Bitcoin Staking MCP
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation2/5
Several tools have overlapping purposes, such as list_protocol_bonds versus list_bonds (both list bonds from different sources) and check_compatibility versus compare_staking_paths (both compare direct vs. pool routes). get_market_snapshot aggregates data from multiple other tools, further blurring boundaries.
Naming Consistency5/5All 14 tools follow a consistent verb_noun pattern using snake_case. Verbs like get, list, build, check, simulate, and compare are clear and predictable, with no mixed conventions or abbreviations.
Tool Count5/514 tools is well within the ideal range for a specialized domain. Each tool addresses a distinct aspect of Bitcoin staking analysis—market overview, protocol status, bonds, custody, routes, yield, and planning—so the count feels appropriate without bloat.
Completeness4/5The tool set covers the full analysis lifecycle: snapshot, status, bond listing/detail, custody/routes, compatibility, yield simulation, and participation planning. Minor gaps exist (e.g., pool-specific details or historical data), but core workflows are supported end-to-end.
Average 3.5/5 across 14 of 14 tools scored. Lowest: 2.4/5.
See the Tool Scores section below for per-tool breakdowns.
- 0 of 1 community issues answered or closed in the last 6 months
- 48 commits in the last 12 weeks
- Last stable release on
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
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?
The annotations already declare readOnlyHint and destructiveHint, and the description adds 'deterministic' behavior and 'evidence precedence already applied.' This provides some transparency beyond the annotations, but no mention of rate limits or other behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness3/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence and uses dense jargon, but it is concise. It is not front-loaded with a clear verb, which reduces its effectiveness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description lacks sufficient detail to understand the tool's role among sibling tools and does not explain what the market snapshot contains beyond vague references. Given the tool's complexity, the description is incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one parameter, network, with an enum and default, which is self-explanatory. However, the description does not mention this parameter at all, and with 0% schema description coverage, the description fails to add any additional meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose3/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses 'Deterministic front door' to describe the tool but lacks an explicit verb like 'get' or 'returns,' leaving the action implied. It mentions the data sources combined, which adds some clarity, but does not clearly distinguish it from sibling tools that also touch registries or bonds.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines1/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no information about when to use this tool versus the many sibling tools. It does not mention any alternative tools or exclusions, leaving the agent without guidance on selection.
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?
Annotations already declare readOnlyHint=true and openWorldHint=true, and the description adds context beyond those: 'claim-sourced' indicates the report is based on claims, 'missing evidence' aligns with open-world behavior, and 'a concrete next action' reveals that the output includes recommendations. This enriches the behavioral model without contradicting annotations.
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 a single, dense sentence that efficiently lists the report's facets. It is not verbose, but the long list of comma-separated items makes it slightly harder to parse. A short second sentence or bullet-like structure would improve readability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complex nested profile object and five parameters, the description is insufficient. It explains what the report covers but not how the tool's inputs drive that content. The presence of an output schema reduces the need to explain return values, but the complete absence of parameter semantics is a critical gap for a tool with this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the absence of parameter documentation. However, it mentions none of the parameters (bondId, network, profile, routeId, bondIndex) nor how they map to the report's content. The nested profile fields are completely unexplained, leaving the agent without any understanding of how to construct valid input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Build') and resource ('diligence report') and names distinct content areas (bond availability, protocol economics, dependencies, LST risks, fit, missing evidence, next action). It clearly states the tool's purpose, though it does not explicitly contrast with sibling tools like build_participation_plan or compare_staking_paths.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives. It does not state prerequisites, exclusions, or indicate whether this should be used before or after other tools. The intended usage context must be inferred from the tool's name and the listed report contents.
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?
Annotations already declare readOnlyHint=true and destructiveHint=false, establishing the safety profile. The description adds only the specific route comparison (native-L1) but does not disclose further behavioral traits such as failure modes, side conditions, or what 'compatibility' entails. Since annotations cover the main safety aspects, the score is moderate.
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 a single sentence that immediately states the verb and the core comparison. There is no redundant wording or filler, making it highly efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With three parameters and an output schema present, the description is too sparse to be complete. It does not explain what 'compatibility' means, how the parameters relate to the custody path, or what the output represents. The presence of an output schema mitigates return-value explanation, but the overall description still leaves major ambiguities for a tool with this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, and the tool description does not mention any of the three parameters (bondId, provider, keyControlPreference). No attempt is made to map 'custody path' to keyControlPreference or to clarify the roles of bondId and provider. The agent is left without any guidance on parameter meaning or relationships.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'check' and clearly names the two objects being compared ('one current custody path' vs 'the selected bond's direct native-L1 route'). This distinguishes it from sibling tools like check_participant_status and compare_staking_paths, though the exact meaning of 'compatibility' is not elaborated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no explicit guidance on when to use this tool over alternatives, nor does it mention when it should not be used. The context of 'current custody path' is implied but not clarified. No exclusions or cross-references to sibling tools are provided.
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?
Annotations already cover read-only and non-destructive behavior. The description adds a useful constraint—'under the canonical published bond'—but does not disclose further behavioral details such as output limitations or the meaning of 'preserved compatibility.'
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 a single sentence, front-loaded with the core purpose. The phrase 'Preserved compatibility tool' is somewhat redundant but does not significantly detract from clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having 12 parameters with many enums, the description gives no contextual guidance on how to populate them or what the comparison yields. The output schema exists, so return format is covered, but the tool's purpose is still too vague for such a complex parameter set.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain any of the 12 parameters. It mentions only 'direct route' and 'approved pool,' which map vaguely to bitcoinPathPreference, but fails to clarify required inputs like goal, liquidityNeed, or keyControlPreference.
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 compares the direct route and approved pool under the canonical published bond, with a specific verb, resource, and scope. This distinguishes it from sibling tools like list_bond_participation_routes or check_compatibility, which do not perform a direct comparison.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternatives. The phrase 'Preserved compatibility tool' hints at legacy status but does not explicitly explain when to prefer or avoid it, nor does it mention any other tools.
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?
Annotations already declare readOnlyHint=true and destructiveHint=false, and the description adds behavioral context by indicating the output will include sources and explicit evidence boundaries (i.e., confidence/limitations). This goes beyond the structured annotations and helps set expectations for the response format.
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 a single sentence with no filler, making it concise and front-loaded. However, it is so brief that it omits useful details about parameters, which slightly reduces its efficiency in conveying complete usage information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has an output schema and only one optional parameter, the description is incomplete: it does not mention the topic parameter, does not explain return-value semantics, and lacks usage guidance. The output schema covers the response structure, but the description's silence on parameters and usage leaves significant gaps for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage and the description does not mention the 'topic' parameter at all. The enum values (audit_status, timelock_construction, etc.) are somewhat self-explanatory, but the description provides no explanation of how to use the parameter or what each topic returns, making it difficult for the agent to select the correct parameter value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Return') and resource ('sourced security diligence'), and adds the qualifier 'explicit evidence boundaries,' which distinguishes it from sibling tools like get_market_snapshot or get_protocol_status. It is not a tautology and clearly conveys the tool's purpose, though it could be more explicit about Bitcoin staking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does 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. The description does not mention conditions, exclusions, or alternative tools, leaving the agent to infer usage solely from the tool name and sibling context.
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?
Annotations already declare readOnlyHint=true and destructiveHint=false, so safety profile is known. The description adds context by stating the tool operates 'without transaction fields' and returns specific outputs (fit, dependencies, missing evidence, diligence actions), which aligns with and slightly extends the annotation. However, it does not disclose other behaviors like data sources or permissions, so value beyond annotations is moderate.
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 a single, tightly written sentence that front-loads the action and outcomes. Every word contributes ('Select or compare bond routes and return fit, dependencies, missing evidence, and diligence actions without transaction fields'). No wasted language or redundant repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite a complex nested profile object and many sibling tools, the description provides only a high-level summary. It does not explain the meaning of the output fields, how the profile influences the plan, or when to use this tool over nearby alternatives. The annotations and output schema exist, but for such a complex tool, the description leaves significant gaps in context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no parameter-level details. The three parameters (bondId, profile, routeId) are not explained, and the nested profile object with many fields is completely undocumented in both schema and description. The description's mention of 'bond routes' hints at bondId/routeId, but it does not explain the profile or any parameter semantics, so it fails to compensate for the low schema coverage.
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 what the tool does: 'Select or compare bond routes and return fit, dependencies, missing evidence, and diligence actions without transaction fields.' This uses specific verbs and resources, and it distinguishes from siblings like list_bond_participation_routes or compare_staking_paths by focusing on building a participation plan with diligence actions.
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 the tool is for selecting or comparing bond routes for a participation plan, but it does not explicitly state when to use it versus alternatives, nor does it mention any when-not-to-use scenarios. It lacks explicit alternatives or exclusions, so guidance is only implied.
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?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds minimal behavioral context with 'current' and 'product-level', but does not disclose details like pagination, ordering, or completeness (though openWorldHint suggests possible incompleteness). No contradiction exists.
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 a single concise sentence with front-loaded verb and clear scope. Every word adds value, and there is no fluff or repetition of schema information.
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?
For a simple read-only list tool, the description covers the core purpose and scope, and the output schema supplies return structure. However, the complete absence of parameter semantics and lack of explicit differentiation from several similar list tools in the sibling set leaves gaps that a fuller description could address.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description does not mention the 'status' or 'provider' parameters at all. The agent gets no guidance on how these parameters filter results or what values like 'available' mean. The enum values are present but lack explanation, and the description fails to compensate for the complete lack of schema descriptions.
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 uses a specific verb ('List') and resource ('custody evidence') with a clear scope qualifier ('for direct native-L1 participation only'). This distinguishes it from sibling list tools like list_bonds or list_bond_participation_routes by explicitly narrowing to native-L1 direct participation.
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 phrase 'direct native-L1 participation only' implies when to use this tool (direct native-L1 custody) and implicitly excludes other participation types, but no explicit alternatives are named. There is no direct 'use X instead' or 'when not to use' guidance, leaving some ambiguity among many sibling list tools.
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?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds behavioral context: 'deterministic' indicates no randomness, 'optional CoinGecko prices enrich the result' discloses a dependency on external data, and 'only when complete' implies a precondition for calculation. No contradiction with annotations.
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 a single, front-loaded sentence that states the action ('Calculate') and key conditions. It is concise with no filler words, earning its place. It is appropriately sized for the information it conveys.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the tool is complex with 11 parameters, no schema descriptions, and no parameter-level guidance. The one-sentence description is insufficient to guide an agent on how to construct valid inputs, which parameters are required in different scenarios, or how to interpret optional parameters. It does not cover edge cases like the relationship between principalBtc and principalSats. Overall, it is incomplete for a tool of this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With schema description coverage at 0%, the description must compensate, but it only mentions vague groupings like 'duration, rate, and all applicable route or LST fees' and 'optional CoinGecko prices'. It does not explain key parameters such as bondId, principalBtc, principalSats, or stxPriceScenariosUsd. The description adds little to help an agent understand the 11 parameters beyond what the schema itself provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool calculates route-aware economics (yield) and implies it is for a bond via the title. It is specific but does not explicitly differentiate from sibling tools like compare_staking_paths, which also involves yield calculations. The verb 'calculate' and resource 'route-aware economics' are clear enough for an agent to grasp the core purpose.
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 a clear precondition: 'only when duration, rate, and all applicable route or LST fees are complete'. This tells the agent when the tool is appropriate to use. However, it does not mention alternatives or explicitly state when not to use it, so it lacks exclusions. Still, it offers useful context about input readiness.
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?
The annotations already declare readOnlyHint=true and destructiveHint=false, and the description adds the detail of returning 'exact endpoint provenance,' which provides useful context about the output's source. No contradiction with annotations.
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 a single sentence that efficiently conveys the action and key outputs without unnecessary words. It earns its place despite minor jargon.
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?
With an output schema present and only one simple parameter, the description is adequate for the core purpose. However, 'PoX' is undefined and the network parameter is not mentioned, leaving some ambiguity about the exact scope of the status.
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?
The schema has one optional 'network' parameter with an enum and default, which is self-explanatory. However, the description provides no explanation of the parameter and schema description coverage is 0%, so the description does not compensate for the low coverage.
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 a read operation ('Read current PoX state') and specifies the resource, including 'exact endpoint provenance.' This distinguishes it from sibling tools that focus on market snapshots, bonds, or guidance.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers no guidance on when to use this tool versus alternatives, and does not mention exclusions or context. It simply states what the tool does, leaving the agent to infer usage.
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?
Beyond the annotations (readOnlyHint, openWorldHint, destructiveHint), the description adds that it scans a 'bounded window' and returns only 'on-chain configured bonds', clarifying filtering and scope. It does not detail pagination or rate limits but provides meaningful behavioral context.
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?
Single sentence, front-loaded with action, no redundant content.
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 moderate complexity with three optional parameters and an output schema. The description covers core purpose but omits parameter explanations and usage guidance; annotations cover safety, but the description is too lean for a complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%. The description's mention of a 'bounded window' hints at the lookback/lookahead parameters but does not explain their semantics or the network parameter. With zero parameter descriptions in schema, the description fails to compensate.
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 action ('Scan', 'return') and the resource ('PoX-5 window', 'on-chain configured bonds'). The phrase 'on-chain configured bonds' differentiates it from generic list_bonds and get_bond siblings.
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 use for a bounded time window of PoX-5 bonds but does not explicitly contrast with sibling tools like list_bonds or specify when to use this over 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?
Annotations already provide read-only and non-destructive hints. The description adds valuable behavioral context by noting the output is a normalized v2 bond and that reconciliation with on-chain state is performed. This goes beyond the annotations without contradicting them.
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 a single, front-loaded sentence that mentions the main action and the distinguishing reconciliation behavior. Every word contributes meaning; there is no fluff or repetition.
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?
Given a single parameter, clear annotations, and an output schema, the description covers the essential purpose and behavior. It might have mentioned potential use cases or failure modes, but for a simple read-only fetch tool, it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not elaborate on bondId, its format, or any constraints. While the parameter name and type are self-explanatory, the description fails to compensate for the missing schema documentation, leaving a minor but real gap.
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 uses a specific verb ('Get') and resource ('normalized v2 bond'), and adds a distinctive functional detail ('reconcile owner claims with on-chain state'). This clearly differentiates it from sibling list/get/builder tools.
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: fetch a single bond and perform reconciliation, but it does not explicitly state when to prefer this over list_bonds or list_protocol_bonds, nor mention any exclusions or prerequisites. Context is clear enough to infer basic use, but explicit guidance on alternatives is absent.
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?
Beyond the annotations (readOnlyHint, openWorldHint, destructiveHint), the description adds that only 'reviewed' bonds are included, that 'route summaries' are part of the output, and that 'demo records remain excluded by default' — all useful behavioral filtering details. No contradictions with annotations.
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 a single, efficient sentence that front-loads the core purpose ('List reviewed public bonds with route summaries') and then adds the key default behavior. Every word earns its place with no padding.
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?
With an output schema present, return details are not needed. However, the description omits any explanation of the 'lifecycleStatus' parameter, and while 'route summaries' is mentioned, its meaning is left ambiguous. The tool is simple and annotations help, but the unaddressed parameter leaves a meaningful gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only indirectly explains 'includeDemo' via 'demo records remain excluded by default', but it does not mention 'lifecycleStatus' at all, leaving that parameter's meaning and effect entirely unspecified.
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 'List[s] reviewed public bonds with route summaries', specifying a concrete action and resource. It distinguishes itself from sibling 'list_protocol_bonds' by emphasizing 'reviewed public' and the inclusion of route summaries.
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 context: it returns reviewed public bonds, excludes demo records by default, and implies the includeDemo parameter to include demos. It does not explicitly name alternatives or when-not-to-use, but the scoping is clear enough for most use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as read-only, open-world, and non-destructive, but the description adds meaningful behavioral context: it infers network from address when appropriate, rejects conflicts, and returns component provenance. This goes well beyond the structured annotations and paints a clear picture of runtime behavior.
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 a single concise sentence that front-loads the core purpose and packs in substantive behavioral details (network inference, conflict rejection, provenance) without unnecessary filler. Every clause adds value and the length is appropriate.
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?
With an output schema present and annotations covering basic safety, the description adds enough context to understand the tool's behavior and output character. It lacks explicit parameter disambiguation and usage alternatives, but the combination of description, schema, and annotations is reasonably complete for a focused check tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, but it only indirectly addresses the 'network' parameter via 'infer network from the address.' The 'address' parameter is implied but not explicitly described, and 'bondId' is not mentioned at all. The description does not clarify the role or constraints of each parameter sufficiently.
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 begins with 'Read public participant state,' a specific verb and resource that clearly identifies the tool's function. It further distinguishes it from siblings by including participant-specific behaviors like network inference, conflict rejection, and provenance return, which are unique among the listed tools.
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 phrase 'when appropriate' implies conditional use based on network inference, but the description does not explicitly state when to use this tool versus alternatives, nor does it mention any exclusions or alternative sibling tools. It provides general context but lacks direct usage guidance.
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?
Annotations already declare this as a safe read-only operation (readOnlyHint=true, destructiveHint=false). The description adds context by detailing the types of routes returned, which goes beyond the structured fields. No contradictions or missing safety disclosures are apparent.
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 a single, front-loaded sentence that immediately states the action and resource. Every phrase adds meaningful detail without redundancy, making it appropriately concise.
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?
For a simple read-only list tool with one required parameter and an output schema, the description provides sufficient context about what routes are returned. It lacks explicit usage alternatives, but the low complexity and annotations make it adequately complete for selection and invocation.
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?
The schema provides no description for bondId (0% coverage), and the description does not explicitly define the parameter. However, the name and usage ('under one bond') make the meaning obvious, so it partially compensates but still leaves format or identifier semantics unspecified.
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 uses a specific verb ('Return') and clearly identifies the resource: participation routes under one bond. It explicitly distinguishes the scope ('under one bond') and enumerates route types (direct native-L1, approved pool, registry-published LST capability), differentiating it from sibling list tools like list_bonds.
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 implies usage when needing routes for a specific bond, which is clear enough for selection. It does not explicitly mention alternatives or when not to use this tool, but the scope is unambiguous relative to sibling tools.
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/andre-stacks/bitcoin-staking-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server