Skip to main content
Glama

Owl Group Trading — Indicator Code

Get an indicator's implementation

get_indicator_code

Return the verified implementation of an Owl Group Trading indicator in a given platform. Args: slug (e.g. 'rl10', 'dragon', 'river-flood-plain') and platform (e.g. 'python', 'javascript'). Returns the commented source code, the verification proof (real Python-vs-JS parity), the summary, and the page URL. Call list_indicators first to see valid slugs and platforms.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesIndicator slug, e.g. 'rl10'
platformNoPlatform: 'python' or 'javascript'python

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It accurately describes the return structure (commented source code, verification proof, summary, page URL). It implies a read-only operation and does not mention side effects, which is appropriate for a retrieval tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise at two sentences, with no wasted words. The first sentence front-loads purpose and returns, and the second provides actionable guidance, making it easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple retrieval tool with two parameters and no output schema, the description is complete. It covers what the tool does, how to use it, what to expect as output, and how to prepare (call list_indicators first).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema covers 100% of parameters with descriptions. The description adds value by providing concrete examples (e.g., 'rl10', 'python') and clarifies that slugs come from list_indicators, going beyond the basic schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns the verified implementation of an Owl Group Trading indicator, specifies key parameters and return values, and explicitly differentiates from the sibling tool list_indicators by instructing to call that first.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance to call list_indicators first to discover valid slugs and platforms, and gives examples of valid inputs. However, it does not explicitly state when not to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

The two tools have clearly distinct purposes: one lists all available indicators, the other retrieves code for a specific indicator. There is no overlap or ambiguity.

Naming Consistency5/5

Both tools follow a consistent verb_noun pattern with snake_case: list_indicators and get_indicator_code. The naming is descriptive and predictable.

Tool Count4/5

Two tools is a minimal but appropriate count for a focused code library. It covers browsing and retrieval without unnecessary extras.

Completeness5/5

The tool surface is complete for its domain: listing indicators and retrieving their code. No missing operations for a read-only code library.

Resources