oracle-feeds-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| getChainlinkPriceA | Fetches the latest on-chain Chainlink price for a pair on a supported chain (e.g. ETH/USD on ethereum). Flags the result as stale if the feed's own on-chain timestamp is older than 1 hour. |
| getChainlinkRoundPriceA | Fetches a specific historical Chainlink round via getRoundData(roundId) — a real historical lookup, not a re-fetch of the latest round. |
| listChainlinkFeedsA | Lists all supported chains and Chainlink pairs in this server's curated registry. |
| getPythPriceA | Fetches the latest price from Pyth Network's Hermes API for a symbol (e.g. SOL/USD) or a raw Pyth feed ID. Pyth's catalog covers far more assets than a static registry, including many not on Chainlink. |
| getPythHistoricalPriceA | Fetches Pyth's price as of a specific unix timestamp (seconds). |
| searchPythFeedsA | Searches Pyth Network's live feed catalog by symbol substring (e.g. 'SOL' or 'gold'). Useful for discovering feed coverage beyond this server's curated Chainlink list. |
| listSupportedChainsA | Lists blockchain networks with curated Chainlink feed coverage in this server. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct resource and action: Chainlink discovery, latest price, historical round; Pyth discovery, latest price, historical timestamp; and chain listing. No two tools overlap in purpose.
All tool names follow a consistent camelCase verb_noun pattern (list, get, search) with clear network prefixes (Chainlink, Pyth). The naming is uniform and predictable.
7 tools is well-scoped for an oracle feed server, covering both Chainlink and Pyth with discovery, latest, and historical data operations. No redundancy or bloat.
The tool surface covers the full price-feed lifecycle for both networks: discovery, latest lookup, and historical retrieval. The only minor gap—Chainlink historical by timestamp—is inherent to Chainlink's API, not an omission.