Skip to main content
Glama

x402-obv

Obv: Calculate On-Balance Volume (OBV), a volume-based momentum indicator. Provide close price and volume arrays.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
closeNoClose to process
valuesNoValues to process
volumeNoVolume to process

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • addedInput schema / properties / close
      Added value: +{
      +  "description": "Close to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / values
      Added value: +{
      +  "description": "Values to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / volume
      Added value: +{
      +  "description": "Volume to process",
      +  "type": "string"
      +}
  2. First observed

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations at all, the description carries the full behavioral burden. It never says whether the result is a single scalar or a time series aligned to the inputs, how the first input point is handled, or what units the output carries — all of which matter for a derived numerical indicator.

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

Conciseness4/5

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

Two compact sentences, front-loaded with the definition of the indicator before the input requirement. The 'Obv:' prefix duplicates the tool name and is mildly redundant, but there is otherwise no wasted text.

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

Completeness2/5

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

There are no annotations and no output schema, so the description is the only source of behavioral detail. It explains what OBV is but not what the tool returns or how to interpret it, which is inadequate for a numerical computation whose output shape is entirely undocumented.

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

Parameters3/5

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

Schema coverage is listed at 100%, but the schema descriptions are generic placeholders ('Close to process', 'Values to process', 'Volume to process'). The description adds that 'close' and 'volume' are arrays, which the schema (typed as strings) does not convey, but it silently ignores the third parameter 'values', leaving it unexplained.

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

Purpose4/5

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

The description states a specific verb ('Calculate') and resource ('On-Balance Volume (OBV)'), and further classifies it as a volume-based momentum indicator, which is enough to distinguish it from generic siblings like x402-volume. It stops short of naming which sibling to prefer (e.g. vs x402-vwap-calc or x402-rsi), so no explicit sibling differentiation.

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

Usage Guidelines2/5

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

There is no when-to-use versus when-not-to-use guidance and no named alternatives. 'Provide close price and volume arrays' is an input instruction, not a usage guideline, and it does not say in what analytic context OBV is preferable to other indicators.

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.

Resources