@cryptoapis-io/mcp-blockchain-fees
OfficialServer Quality Checklist
Latest release: v0.3.0
- Disambiguation5/5
Each tool targets a distinct blockchain family (UTXO, EVM, XRP) or serves a clearly separate documentation purpose (system_info). There is no overlap or ambiguity between tool purposes.
Naming Consistency4/5The three fee tools follow a consistent 'blockchain_fees_<type>' pattern, making their scope predictable. system_info deviates from the fee-focused naming but is a clear utility name, so the overall set is mostly consistent.
Tool Count5/5Four tools is a well-scoped count for a fee-estimation server. Each tool handles a distinct category (UTXO, EVM, XRP, documentation) without unnecessary bloat or missing essentials.
Completeness4/5The server covers the primary blockchain fee estimation families (UTXO, EVM, XRP) and includes detailed internal actions for each. Minor gaps exist for other fee types or chains, but the core domain is well covered.
Average 4/5 across 4 of 4 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 1 commit in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It conveys that the tool performs estimations (read-only) and lists actions, but does not explicitly state that no transaction is signed or submitted. It does add useful context about credits and response headers, which is a behavioral trait. Still, the lack of an explicit read-only/safety disclosure keeps it from a higher score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness2/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a clear purpose, but the credits section is excessively long and repetitive, listing the same credit values for multiple actions. This violates the principle that every sentence should earn its place. The core action list is useful, but the redundancy makes the description bloated and less scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 11 parameters and 5 distinct actions, but the description does not guide the agent on which action to choose for a given scenario. The schema hints at required parameters per action, and the action names are self-explanatory, but without an output schema or action-selection guidance, the description is only minimally complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and each parameter already includes detailed descriptions, including action-specific requirements. The tool description's action list duplicates some of this information (e.g., which action requires 'data') without adding new meaning beyond the schema. Therefore, it meets the baseline but does not elevate it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-resource pair: 'Get fee recommendations and estimate gas costs for EVM blockchains.' This clearly distinguishes the tool from its siblings (UTXO, XRP) by explicitly scoping to EVM. The subsequent action list enumerates concrete operations, leaving no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear guidance on when to use the tool: 'Use this before preparing or signing a transaction to determine appropriate gas parameters.' This gives a concrete context. However, it does not mention alternatives or explicit when-not-to-use scenarios, though the sibling tool names (UTXO/XRP) implicitly differentiate by chain type.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses credit costs and that actual credits are in response headers, which is useful. However, it does not describe the return format or any side effects, though as a read-only fee tool this is less critical.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with the purpose. It includes credit info as a separate block, which is relevant but could be considered extraneous. Overall, it is efficient with no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one required parameter and no output schema. The description gives network options and credit costs, but does not explain what 'fee recommendations' includes or the structure of the response. For a minimal fee tool, this is adequate but has gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%: both 'network' (with enum) and 'context' are fully described in the schema. The description only repeats the network names, adding no new parameter semantics. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'get fee recommendations' for XRP, with specific network options. It distinguishes itself from sibling tools like blockchain_fees_utxo and blockchain_fees_evm by explicitly naming the chain (XRP) and supported networks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: when you need fee recommendations for XRP on mainnet or testnet. However, it does not explicitly state when to prefer this over sibling fee tools or system_info, nor does it mention exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the two actions, includes credit costs per action/blockchain, and notes that credits are indicative and actual costs are returned in response headers. This adds meaningful behavioral context beyond the schema, though it doesn't explicitly state read-only behavior or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the main purpose in the first sentence, followed by usage guidance and a structured action list. The credits section is somewhat verbose but serves a purpose (cost transparency). Overall, it's well-organized and each section earns its place, though it could be slightly more compact.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's scope, use cases, available actions, and cost information, which is solid for a fee-recommendation tool. It lacks an output schema but the actions imply the return type. The description is sufficiently complete given the tool's complexity, though it could clarify the meaning of fee tiers or the return structure.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and each parameter has a description. The tool description adds action-to-parameter mapping (e.g., feeRatePriority and confirmationTarget are 'estimate-transaction-smart-fee only') but this is also present in the schema. The description doesn't significantly augment the parameter semantics beyond what the schema already provides, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get fee recommendations for UTXO blockchains' and lists the specific blockchains (bitcoin, bitcoin-cash, litecoin, dogecoin, dash, zcash). It also differentiates from sibling tools by naming the UTXO scope, which contrasts with the EVM and XRP siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage context: 'Use this before preparing or signing a transaction to determine the appropriate fee rate.' It also breaks down the two actions and their specific use cases. However, it does not explicitly mention when to avoid this tool or name alternative tools, so it falls 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.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly states this is a documentation-only tool with no API call and no credit consumption, which is a key behavioral trait. It also lists the detailed coverage of each action, giving a good sense of what the response will contain. While it doesn't describe response format or pagination, the tool is a simple reference lookup, so the disclosure is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is effectively structured with a leading one-line summary followed by a bulleted list of actions. Each bullet is concise and informative, with no redundant or filler content. It packs a lot of useful detail into a compact format, making it easy to scan and understand.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has a simple interface with only one required parameter, and the description covers all possible enum values with detailed context. It also conveys the crucial fact that no credits are consumed, which is important for cost-aware agents. No output schema exists, but the description clearly indicates what type of information is returned for each action, making the tool fully understandable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage with descriptions for both 'action' and 'context', so the baseline is 3. The tool description adds substantial meaning beyond the schema by detailing exactly what content each enum value provides (e.g., errors includes HTTP status, error code, message; callbacks includes retry strategy and HMAC). This goes above the schema's simple 'Reference topic to retrieve'.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'CryptoAPIs reference documentation — no API call, no credits consumed,' which precisely defines the tool as a documentation lookup rather than an operational API call. It then enumerates five distinct reference actions (blockchains, errors, credits, callbacks, limits), each accompanied by a brief scope. This clearly differentiates it from sibling fee-related tools like blockchain_fees_utxo/evm/xrp.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly notes that no API call or credits are consumed, signaling that this tool is for retrieving reference information, not for executing transactions. Each bullet item specifies the kind of information retrievable, such as error tables, credit costs, and webhook mechanics, giving implicit when-to-use guidance. It does not explicitly mention alternatives, but sibling tools are fee-specific, so the usage context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CryptoAPIs-io/cryptoapis-mcp-blockchain-fees'
If you have feedback or need assistance with the MCP directory API, please join our Discord server