Skip to main content
Glama
MeMikko

hoodgrow-mcp

Get HoodGrow OHLC price candles

get_ohlc
Read-onlyIdempotent

Retrieve OHLC price candles for backtesting using on-chain Chainlink feeds. Specify symbol and interval; optional date range defaults to last 30 days.

Instructions

OHLC price candles for backtesting, bucketed from price history already collected every ~15 min. Each candle also carries volumeUsd/swapCount — USD swap volume across the token's Uniswap V3 pools, null for buckets older than the volume indexer's backfill window. Defaults to the last 30 days if from/to are omitted; window capped at 730 days. $0.05 via x402, or 1 daily unit with a free API key. Fails for an unknown symbol. Prices are read from Chainlink feeds on-chain, not relayed from an off-chain aggregator, and refreshed every 15 minutes — each response is that snapshot, with observedAt giving its exact age. priceSource says which tokens resolved a feed and which fell back.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoISO 8601 end (default: now).
fromNoISO 8601 start (default: 30 days before `to`).
limitNoMax candles to return, 1-1000. Defaults to 500.
symbolYesTicker symbol, e.g. "NVDA" (case-insensitive).
intervalYesCandle bucket size.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.6.0

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the readOnly/openWorld/idempotent annotations, the description discloses pricing, unknown-symbol failure behavior, Chainlink feed sourcing, 15-minute refresh cadence, observedAt freshness, volumeUsd/swapCount null backfill behavior, and priceSource fallback semantics. This is far richer than the structured annotations alone.

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?

Four dense sentences convey purpose, defaults, limits, pricing, failure modes, data source, freshness, and result fields without filler. It is front-loaded with the core purpose, and every sentence earns its place.

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?

Even without an output schema, the description explains key return-value aspects such as candle buckets, volumeUsd/swapCount, observedAt, and priceSource. It also covers limits, defaults, cost, and error behavior, making the tool sufficiently complete for an agent to select and invoke it confidently.

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?

Schema coverage is 100%, but the description adds meaningful parameter behavior: from/to default to 30 days, the window is capped at 730 days, and unknown symbols fail. It does not need to repeat schema enum or type details, and the added semantics justify a score above baseline.

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 opens with 'OHLC price candles for backtesting,' clearly naming the specific resource and intent, and distinguishes it from sibling tools like get_trades or get_markets by emphasizing bucketed candle history sourced from Chainlink feeds.

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 gives clear context: this is for backtesting OHLC price data, defaults to 30 days, caps at 730 days, and notes failure on unknown symbols. It does not explicitly name alternative tools or say when not to use it, so it stops short of a 5.

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