PriceFeed
Server Details
Real-time & historical crypto and fiat exchange rates, median-aggregated from multiple sources.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 4 of 4 tools scored.
Each tool has a distinct purpose: converting currencies, getting latest rates, historical rates, and service status. No overlap or ambiguity.
All tools use a consistent verb_noun pattern in snake_case (convert_currency, get_latest_rates, get_rate_history, get_service_status), making them predictable.
4 tools is well-scoped for a price feed service, covering conversion, current/historical rates, and status without unnecessary bloat.
Core functionality is covered, but a tool to list supported currency pairs would be a minor useful addition, making the surface slightly incomplete.
Available Tools
4 toolsconvert_currencyConvert Currency ToolAInspect
Convert an amount between any two supported currencies (crypto or fiat). Uses the direct pair when available, otherwise bridges through USD/USDT/UAH/EUR.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Target currency symbol, e.g. UAH or EUR | |
| from | Yes | Source currency symbol, e.g. BTC or USD | |
| amount | No | Amount to convert. Defaults to 1. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description partially discloses behavior by noting the bridging strategy via USD/USDT/UAH/EUR, but omits details like error handling, rate freshness, or whether the operation is read-only.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences: the first states the purpose, the second provides a key behavioral detail. No extraneous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple conversion tool but lacks information on return format, error conditions, or supported currency list, which would be helpful given no output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear parameter descriptions; the tool description adds bridging context but does not significantly enhance understanding of parameter meanings beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool converts amounts between any two supported currencies (crypto or fiat), and distinguishes itself from sibling tools like get_latest_rates by focusing on conversion rather than rate fetching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for currency conversion but does not explicitly state when to use this tool versus alternatives like get_latest_rates for rate data, nor does it mention prerequisites or limitations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_latest_ratesGet Latest Rates ToolAInspect
Get the latest aggregated exchange rates for a base asset (crypto or fiat) against one or more quote currencies, including 24h percent change. Rates are aggregated by median across multiple sources (Binance, Kraken, Coinbase, OKX, Bybit, WhiteBIT, NBU, ECB and others).
| Name | Required | Description | Default |
|---|---|---|---|
| base | Yes | Base asset symbol, e.g. BTC, ETH, USDT, USD, EUR | |
| quotes | No | Comma-separated quote currencies, e.g. "USD,EUR,UAH". Defaults to USD. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description discloses aggregation method (median) and sources (Binance, Kraken, etc.), which goes beyond a simple 'get rates'. It also mentions inclusion of 24h percent change. Missing details like rate limits or idempotency, but the core behavior is well described.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences efficiently convey purpose and key behavioral details. No redundant information; each sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers what the tool does, how rates are aggregated, and that it includes 24h change. However, it lacks details on output format (e.g., map from quote to rate). Given no output schema, a brief note on structure would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description adds no extra meaning beyond the schema. The schema already documents 'base' and 'quotes' with defaults and examples. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves latest aggregated exchange rates for a base asset against quote currencies, with 24h change. It distinguishes from siblings like convert_currency and get_rate_history by focusing on current aggregated rates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for obtaining current rates but does not explicitly guide when to use this tool versus alternatives like get_rate_history or convert_currency. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_rate_historyGet Rate History ToolAInspect
Get historical OHLC (open/high/low/close) candles for a currency pair over a period.
| Name | Required | Description | Default |
|---|---|---|---|
| base | Yes | Base asset symbol, e.g. BTC | |
| quote | No | Quote currency symbol. Defaults to USD. | |
| period | No | History period. Defaults to 7d. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description accurately indicates a read operation ('Get'), but fails to disclose additional behaviors such as data range limitations, potential empty results, or rate limit considerations. Basic transparency is achieved, but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no unnecessary words. It is front-loaded and efficient, perfectly sized for the tool's simplicity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (3 params, no output schema), the description covers the basic purpose. However, without an output schema, additional context about the return format (e.g., array of OHLC objects) would improve completeness. Still, it is adequate for most use cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds minimal extra meaning beyond the schema (e.g., 'currency pair' mirrors base/quote). No new parameter details are provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool retrieves historical OHLC candles for a currency pair, using a specific verb and resource. It effectively distinguishes from sibling tools like get_latest_rates (current rates) and convert_currency (conversion).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide any guidance on when to use this tool versus alternatives (e.g., get_latest_rates for current data). No explicit usage context or exclusions are given, leaving the agent to infer from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_service_statusGet Service Status ToolAInspect
Get PriceFeed service health: data source statuses, cache health and the list of supported currency pairs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It lists what is returned but does not disclose any side effects (likely none), rate limits, authentication requirements, or response format details. Adequate but could be more comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 16 words that is front-loaded and free of redundancy. Every word contributes to understanding the tool's function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and no output schema, the description covers the main purpose and return value categories. It could explicitly note that no input is required, but overall it is sufficiently complete for a simple status tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters and schema coverage is 100%, so the description does not need to add parameter details. Baseline for 0 parameters is 4, and the description appropriately focuses on the tool's purpose.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves 'PriceFeed service health' and specifies exactly what is included: data source statuses, cache health, and supported currency pairs. The verb 'Get' with a specific resource makes purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking service health, and siblings (convert_currency, get_latest_rates, get_rate_history) are distinct operations, providing clear context. However, there is no explicit statement about when or 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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!