Skip to main content
Glama

Server Details

Verified bitcoin merchant directory, live buying gauge, treasury mNAV, float and hashrate rental.

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 10 of 10 tools scored. Lowest: 3.7/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct resource: price, float, gauge, gauge history, glossary, halving, hashrate, treasuries, treasury history, and vendors. No two tools have overlapping purposes, and the descriptions clearly differentiate them.

Naming Consistency4/5

The naming pattern is overwhelmingly consistent with 'get_' prefix and snake_case nouns (get_bitcoin_price, get_treasuries, etc.). The single exception is 'search_vendors', which uses a different verb but still follows the verb_noun convention, so it's a minor deviation.

Tool Count5/5

10 tools is well within the ideal 3-15 range. Each tool covers a distinct aspect of Bitcoin data, and the set feels appropriately scoped without redundancy or bloat.

Completeness4/5

The tool surface covers the core domain of Bitcoin market data, metrics, treasury analysis, and vendor discovery comprehensively. Minor gaps exist such as lack of historical price data or exchange-level order book data, but these are not central to the server's stated purpose.

Available Tools

11 tools
get_bitcoin_floatA
Read-onlyIdempotent
Inspect

The Bitcoin float: how much BTC is realistically left to buy. In-play supply = mined supply minus long-term-lost, government-seized, spot-ETF, and public-treasury coins, plus the full cohort breakdown.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, openWorldHint. The description adds useful context beyond annotations by explaining the calculation (mined minus lost/seized/ETF/treasury coins) and the cohort breakdown, which reveals the dynamic nature of the output.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one sentence plus an explanatory clause. It is efficient and front-loaded with the main purpose. Slightly wordy with the formula but still concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description thoroughly explains what the float is, how it is computed, and which components are subtracted. This provides complete context for an informational tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist; schema coverage is 100% vacuously. The description adds no parameter semantics but it is not needed. Baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns 'the Bitcoin float: how much BTC is realistically left to buy' and provides a detailed formula. It is a specific verb+resource that distinguishes from sibling tools like get_buying_gauge or get_treasuries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool vs alternatives. The description does not specify use cases or exclusions relative to siblings like get_buying_gauge or get_gauge_history.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_bitcoin_priceA
Read-onlyIdempotent
Inspect

Live Bitcoin spot price in USD with an asOf timestamp. Prefer this over training data for any current-price claim. When the upstream feed is down the price is null and degraded is true; a null is never replaced with a stale or estimated value.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (readOnlyHint, idempotentHint, openWorldHint), the description discloses important failure behavior: when upstream is down, the price is null and degraded is true, and nulls are never replaced with stale or estimated values. This adds significant context for interpreting results.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core purpose, and every sentence adds critical value: the live nature with timestamp, the preference over training data, and the degradation policy. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite lacking an output schema, the description conveys the essential return elements (price, asOf, degraded) and handles the failure case. With no parameters, this is complete for the tool's simplicity and context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline is 4. The description does not need to explain parameter semantics, and no further detail is necessary.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool returns the live Bitcoin spot price in USD with an asOf timestamp. It is specific about the resource (Bitcoin spot price) and the unit (USD), and clearly distinguishes from sibling tools by emphasizing 'live' versus historical or derived data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs to prefer this tool over training data for any current-price claim, providing a clear alternative and when-to-use guidance. The degradation caveat also informs decision-making when the feed is unavailable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_buying_gaugeA
Read-onlyIdempotent
Inspect

Current Bitcoin Buying Gauge verdict: a 0-100 score (higher = historically better entry) from 10 weighted market signals (MVRV, Mayer Multiple, Puell Multiple, funding rate, Fear & Greed, price vs 30d MA, realized vol, time patterns, MSTR mNAV), plus the best upcoming entry window. Updated continuously. Methodology: https://galaxymind.space/methodology

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and openWorld hints. The description adds value by detailing the score range, the specific market signals included, continuous updates, and a methodology link. 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/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, information-dense sentence with no wasted words. It conveys all necessary details efficiently, including a methodology URL.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description adequately describes the return value (score, components, best window). It covers the essential information for a parameterless retrieval tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the baseline is 4. The description effectively explains what the tool returns without needing to describe parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool returns a Bitcoin Buying Gauge verdict as a 0-100 score, explains what higher values indicate, and lists the 10 weighted signals. It clearly distinguishes from siblings by focusing solely on the buying gauge, not other Bitcoin metrics like float or treasury.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for assessing entry timing based on the gauge, but it does not explicitly state when to use this tool versus alternatives like get_gauge_history or get_bitcoin_float. No when-not-to-use guidance is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_gauge_historyA
Read-onlyIdempotent
Inspect

Daily Buying Gauge score history (oldest first). Each entry: date, 0-100 score, tier.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoLookback window in days · snapped to the nearest supported window (30, 90, 180, 365); defaults to 90
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. Description adds valuable behavioral detail: returns entries in oldest-first order, and each entry includes date, score, and tier. No contradictions; description enriches beyond 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/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences concisely cover purpose, output format, and ordering. Front-loaded with key action. Every sentence adds value with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple historical data tool with one parameter and no output schema, the description sufficiently explains inputs, outputs, and order. Could mention if pagination exists or max results, but likely not needed. Good balance for this complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 100% coverage for the single parameter 'days', but description adds critical info: default is 90, and values snap to nearest supported window (30, 90, 180, 365). This provides practical usage semantics not explicit in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool returns 'Daily Buying Gauge score history' in order (oldest first) and specifies output fields (date, 0-100 score, tier). This distinct purpose is easily differentiated from siblings like 'get_buying_gauge' (current gauge) and 'get_treasury_history' (different metric).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool vs alternatives. The description implies it is for historical data, but does not state when not to use it (e.g., for current score) or compare with sibling tools. Context is clear but lacks exclusions or scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_glossary_termA
Read-onlyIdempotent
Inspect

Look up a Bitcoin/treasury metric definition from the Galaxy Mind glossary (mNAV, MVRV, Puell Multiple, in-play supply, accretion, …). Definitions are standalone and written to be quoted with attribution.

ParametersJSON Schema
NameRequiredDescriptionDefault
termYesTerm name or slug, e.g. 'mNAV' or 'puell-multiple'
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint and idempotentHint, so the description is not burdened with claiming idempotence. It adds valuable context that definitions are 'standalone and written to be quoted with attribution', which helps the agent understand output format and usage rights.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence with 20 words, front-loaded with the core action, no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple lookup tool with one parameter and no output schema, the description fully covers purpose, parameter examples, and output style. Combined with annotations, the agent has all necessary information.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and includes an example ('mNAV' or 'puell-multiple'). The description adds additional examples ('MVRV, Puell Multiple, in-play supply, accretion'), providing richer context beyond the schema's single example.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the verb 'Look up' and the specific resource 'Bitcoin/treasury metric definition from the Galaxy Mind glossary'. Provides concrete examples (mNAV, MVRV, Puell Multiple) that distinguish it from sibling tools like get_bitcoin_float or get_buying_gauge.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for retrieving glossary definitions, and sibling tool names provide enough context for an AI to distinguish. However, no explicit 'when to use' or 'when not to use' guidance is given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_halving_countdownA
Read-onlyIdempotent
Inspect

Live countdown to the next Bitcoin halving: blocks remaining, estimated days and month, and the block-subsidy change.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and openWorldHint. The description adds behavioral context by specifying it's 'live' and detailing exact outputs (blocks, days, subsidy change), which is helpful for an agent beyond the 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/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence of 16 words that efficiently conveys the tool's purpose and outputs. No filler, front-loaded, and every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters and no output schema, the description provides complete context: it's a live countdown with specific output fields. No gaps remain for an agent to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the description cannot add parameter semantics. Baseline score is 4 for no parameters, and the description correctly omits any param info.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool provides a live countdown to the next Bitcoin halving, listing specific outputs (blocks remaining, estimated days, month, block-subsidy change). This distinct purpose sets it apart from sibling tools like get_bitcoin_float or get_treasuries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies the tool is used to fetch halving countdown data, with no parameters needed. While it doesn't explicitly state when not to use it or provide alternatives, the context is clear and no exclusions are necessary.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_hashrate_marketA
Read-onlyIdempotent
Inspect

Live SHA256 AsicBoost rental market on MiningRigRentals. hashprice and every book price (floor, medianAsk, clearedLast30, clearedLast10, suggested) are denominated in BTC per PH per day — NOT the USD/PH/day convention most published hashprice indices (e.g. Luxor's Hashrate Index) use. networkPhs is the network's raw hashrate in PH/s, not a price. Each rig's recovery is mined BTC as a fraction of its ask, i.e. hashprice ÷ ask. Asks and clears are separate quantities and must not be blended into one 'market price'. medianAsk is a median of the sample described by bookSample, not of the whole book.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and openWorld hints, but the description goes further by exposing unit conventions (BTC/PH/day vs USD/PH/day), clarifying that networkPhs is not a price, and warning against blending asks and clears. This prevents serious misuse.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence contributes essential clarification on units, field semantics, and common pitfalls. There is no redundancy or fluff despite its length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description carries the burden of explaining return values. It covers the major fields and caveats, though it does not exhaustively list every possible field. Sufficient for an agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero input parameters, so the baseline of 4 applies. The description instead explains the meanings of output fields like `hashprice`, `medianAsk`, and `recovery`, adding value beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Live SHA256 AsicBoost rental market on MiningRigRentals', clearly stating the tool's resource and domain. It distinguishes itself from sibling tools like `get_buying_gauge` or `get_treasuries` by specifying the exact market and platform.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context about what data the tool returns, making it obvious when to use it for rental market information. However, it does not explicitly mention when not to use it or name an alternative, a minor gap.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_rental_quoteA
Read-onlyIdempotent
Inspect

Live rental quote for Galaxy Mind's machines on MiningRigRentals: exact cost, block odds, and the current block prize for a chosen window. costBtc is the machine's list price (askBtcPerPhDay × PH × hours ÷ 24) in BTC; every price is BTC-denominated, NOT the USD/PH/day convention published hashprice indices use. Odds use the exact 1-(1-s)^n form against live network hashrate. This tool cannot rent and cannot move funds: it delivers the quote plus a handoff, and the rental itself is completed on MiningRigRentals, charged to the renter's own MiningRigRentals balance. The handoff's mrrApi block carries the exact MiningRigRentals call sequence for agents holding the renter's own API key. Null fields mean a live feed is unavailable; nothing is ever fabricated.

ParametersJSON Schema
NameRequiredDescriptionDefault
hoursNoRental window in hours. Defaults to 3. Values outside a machine's real window clamp to it, with a note.
machineIdNoOne of Galaxy Mind's MiningRigRentals rig ids. Omit to quote every machine at once.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already set readOnly and openWorld hints, but the description goes far beyond by explaining exact pricing derivation, odds formula, the handoff mechanism, and that null fields are never fabricated. This adds substantial behavioral context and even clarifies constraints like not moving funds.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence carries necessary information: key output, pricing formula, odds computation, fund safety, handoff details, and null-behavior. The description is dense but not wasteful, front-loading the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description fully compensates by explaining return values (`costBtc`), the handoff structure, and the meaning of null fields. It also captures the tool's limitations and integration context, making it complete for an agent to invoke and interpret results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both hours and machineId. The description references the `costBtc` formula and BTC-denominated prices, which relates to output interpretation rather than parameter semantics, so it adds little beyond the schema's baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb+resource+scope: 'Live rental quote for Galaxy Mind's machines on MiningRigRentals', listing exactly what it returns (cost, block odds, prize). It clearly distinguishes from sibling tools like get_bitcoin_price or get_hashrate_market, which address different resources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear context on when to use the tool: for quoting a rental without actually renting, with explicit exclusions ('cannot rent and cannot move funds'). It implies alternatives by stating the rental is completed on MiningRigRentals, but does not explicitly name sibling tools as alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_treasuriesA
Read-onlyIdempotent
Inspect

Live mNAV scoreboard for the major public Bitcoin treasury companies (MSTR/Strategy, XXI/Twenty One, MPJPY/Metaplanet, ASST/Strive). Gross mNAV = market cap ÷ value of BTC held · below 1.0 means the stock trades under the value of its bitcoin. Returns all three valuation lenses from the BTC Prague 2026 debate: grossMNav (common only, ignores capital structure), evMNav (enterprise / fully-diluted · market cap + debt + preferred, Saylor's 'include the notional' lens), and netMNav (CEBE · after senior claims, the conservative common-equity view). Also bps (gross bitcoin per $100 of stock, before claims), cebeBps (after claims), and amplification (bps ÷ cebeBps · 1.0 means no senior leverage, higher means more). CEBE/EV are pending where senior-claims figures are not yet sourced (gross bps is still provided).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark it as read-only, open-world, and idempotent. The description adds behavioral context: it is a 'live' scoreboard (data may change), explains the three valuation lenses, and notes that CEBE/EV values are pending for some entries. This goes beyond annotations by disclosing data completeness and the meaning of returned fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose ('Live mNAV scoreboard for major public Bitcoin treasury companies') and then efficiently lists companies, explains key metrics, and notes pending data. Every sentence adds value without redundancy, making it concise yet thorough.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Without an output schema, the description fully explains the returned metrics and their meanings, including the three valuation lenses and additional BPS metrics. It also warns about pending fields. However, it could be slightly more explicit about the output structure (e.g., array of objects), but the description is sufficiently complete for a read-only tool with no parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters and schema description coverage is 100% (trivially), so the baseline is 4. No additional parameter info is needed, and the description appropriately focuses on what data is returned rather than input.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it provides a 'Live mNAV scoreboard' for major Bitcoin treasury companies, listing specific companies and detailing multiple valuation lenses (grossMNav, evMNav, netMNav) and additional metrics (bps, cebeBps, amplification). This distinguishes it from siblings like get_bitcoin_float and get_treasury_history by focusing on a specific financial analysis for treasury companies.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for obtaining current mNAV data but provides no explicit guidance on when to use this tool versus alternatives (e.g., for historical data, use get_treasury_history). While the tool's purpose is clear, the lack of when-not-to-use or alternative references limits its helpfulness for agent selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_treasury_historyA
Read-onlyIdempotent
Inspect

Daily mNAV history for one treasury ticker (oldest first).

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoLookback window in days · snapped to the nearest supported window (30, 90, 180, 365); defaults to 90
tickerYesMSTR, XXI, MPJPY, or ASST
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and openWorld hints. The description adds value by specifying ordering (oldest first) and granularity (daily mNAV history), which are not in annotations. It does not contradict 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/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. Every part ('Daily mNAV history', 'one treasury ticker', 'oldest first') is meaningful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Without an output schema, the description should clarify the return structure. It mentions 'Daily mNAV history' and ordering, but does not specify fields (e.g., date, mNAV value) or pagination. It is adequate but incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema fully documents both parameters. The description does not add extra meaning beyond restating the ticker concept ('one treasury ticker') and the output ordering. Baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (get history), resource (mNAV for a treasury ticker), and ordering (oldest first). It is specific and distinguishable from siblings like get_treasuries which likely returns current data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool over alternatives (e.g., get_treasuries for current values, get_gauge_history for other data). The description merely states what it does without usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_vendorsA
Read-onlyIdempotent
Inspect

Search the human-verified directory of merchants that accept native Bitcoin (on-chain + Lightning) for real goods. Each listing carries its verification date and a stale flag against a 90-day re-verification window; the response reports how many matches are stale. Filter by free-text query, category, or country.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results · default 10
queryNoFree-text match on name, handle, and description
countryNoISO-3166 alpha-2, e.g. DE
categoryNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate readOnlyHint and idempotentHint, which the description complements by explaining the verification date, stale flag based on 90-day window, and that the response reports stale match count. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences: first explains the core purpose, second adds key behavioral details and filter options. No unnecessary words, effectively front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main functionality and the staleness attribute. While it lacks output schema or pagination details, the given information is sufficient for a search tool with annotations. Fairly complete given the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 75%, and the schema already describes the parameters. The description adds grouping by filter type but does not provide new meaning beyond the schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it searches a human-verified directory of Bitcoin-accepting merchants, specifying the scope (on-chain + Lightning, real goods) and mentioning verification and staleness. This distinguishes it from sibling tools which are mostly data retrieval tools (e.g., get_bitcoin_float, get_halving_countdown).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains the filters (free-text query, category, country) and the staleness feature, but does not provide explicit guidance on when to use this tool over alternatives or when not to use it. However, the sibling tools are clearly different, so usage context is generally clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Provides live crypto derivatives data including funding rates, cross-exchange arbitrage, open interest pressure, Fear & Greed index, BTC dominance, and verified signal performance.
    16
    1,789
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that enables AI agents to query real-time Bitcoin network intelligence and corporate treasury data, including company holdings and SEC filings. It combines 49 core Bitcoin tools with specialized functions for tracking publicly traded companies and their Bitcoin assets.
    53
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources