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.8/5 across 4 of 4 tools scored.
Each tool serves a distinct purpose: conversion, current rates, historical rates, and service status. There is no overlap in functionality.
All tools follow a consistent verb_noun pattern using lowercase and underscores, making them predictable and easy to understand.
With 4 tools, the server is well-scoped for a price feed service, covering essential operations without unnecessary bloat.
The tool set covers key operations: conversion, current rates, historical data, and service status. No obvious gaps for the stated domain.
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?
Missing details on supported currencies list, rate freshness, fees, or output format. Annotations empty, so description carries full burden but only mentions bridging strategy.
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 efficient sentences with no unnecessary words, front-loaded with the main action.
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?
Adequate for a simple conversion tool given schema coverage, but missing supported currency list and output description. No output schema to compensate.
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 descriptions cover all parameters (100%). Description does not add meaning beyond schema, so baseline 3.
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?
Clearly states it converts between two currencies, specifies crypto or fiat, and distinguishes from siblings (get_latest_rates, get_rate_history, get_service_status).
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?
Provides bridging strategy context but lacks explicit when-to-use or when-not-to-use guidance compared to siblings.
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?
The description discloses that rates are aggregated by median across multiple named sources and that 24h change is included. This adds value beyond empty annotations, but it does not cover aspects like refresh frequency, rate limits, or whether the data is real-time.
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 two sentences long, front-loads the core purpose, and includes essential details (aggregation method, data sources) with no unnecessary words.
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?
While the tool is simple (2 params, no output schema), the description omits information about the response format or structure, which would help an agent interpret results. It adequately covers purpose and data source aggregation but lacks completeness for a fully self-contained definition.
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%, but the description adds context: base asset can be crypto or fiat, quotes default to USD and accept comma-separated values. This provides practical guidance beyond the schema's parameter descriptions.
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 gets the latest aggregated exchange rates for a base asset against quote currencies, with 24h percent change. It distinguishes from siblings like convert_currency (conversion) and get_rate_history (historical data) by focusing on current 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?
No guidance is provided on when to use this tool versus alternatives (convert_currency, get_rate_history). The description simply states what it does, leaving the agent to infer usage context without explicit when/when-not instructions.
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?
Annotations are empty, so the description carries full burden. It reveals that data is historical OHLC for a period, which is adequate but does not disclose details like supported pairs, data granularity, or response size. For a simple read tool, this is minimally acceptable.
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 that front-loads the key information with no wasted words. It is appropriately concise for a simple tool.
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 tool is simple with 3 parameters and no output schema or nested objects. The description covers the essential purpose and data type (OHLC candles). Though it does not specify response format, it is reasonably complete for an experienced agent.
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 description adds no extra meaning beyond the schema. The description's mention of 'currency pair' and 'period' aligns with parameters, but no additional clarification is 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 the verb 'Get' and the resource 'historical OHLC candles for a currency pair over a period'. It is specific and distinguishes this tool from siblings like convert_currency and get_latest_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?
No guidance is provided on when to use this tool versus alternatives such as convert_currency or get_latest_rates. The description lacks any contextual or conditional advice.
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 indicates a read operation (get) and specifies the content returned. No side effects or destructive behavior are mentioned, which is appropriate for a health check tool.
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 that efficiently communicates the tool's purpose and output. No extraneous information.
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 is sufficient for a health check tool. It lists what the tool returns but could be enhanced by noting the structure of statuses or error behavior.
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 no parameters, so schema coverage is 100%. The description correctly adds no parameter information as it is unnecessary. Baseline for zero parameters is 4.
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, listing specific data (data source statuses, cache health, supported currency pairs). It distinguishes itself from sibling tools that deal with currency conversion and rate history.
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 use for checking service health but does not explicitly state when to use it versus alternatives or when not to use it. Sibling tools are provided in context but not referenced in the description.
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!
Related MCP Servers
- Alicense-qualityDmaintenanceReal-time currency exchange rates and crypto prices via MCP. Convert between 60+ fiat currencies and 30+ cryptocurrencies with multi-source failover. No API keys needed for upstream data.Last updated6ISC
- Alicense-qualityCmaintenanceProvides cryptocurrency market data (top coins by market cap) and fiat currency exchange rates.Last updated15MIT
- Alicense-quality-maintenanceFree real-time cached CoinGecko USD prices + 24h change. No key, no signup, 15/min rate limit. x402 paid v2 soon. Perfect for trading/research agents.Last updated
- FlicenseBqualityDmaintenanceProvides real-time and historical cryptocurrency price data from multiple exchanges including Coinbase, Binance, and Kraken. It enables users to fetch prices with customizable parameters such as specific timestamps, time resolutions, and fiat currency conversions.Last updated2