Skip to main content
Glama

Block Height

block_height
Read-onlyIdempotent

Return the current chain tip block height (latest mined block number) for mainnet, testnet, signet, or liquid.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
networkNoWhich Bitcoin network. Defaults to mainnet — the real Bitcoin network, which is what "Bitcoin" means in an ordinary question. "bitcoin" and "btc" are accepted as aliases for mainnet.mainnet

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
heightYesCurrent block height
networkYesNetwork name

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which fully cover safety and idempotence. The description adds context about returning the 'current chain tip' but does not disclose any additional behavioral traits beyond what annotations provide.

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 that is front-loaded with the verb and resource, containing no extraneous words. 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?

For a simple tool with one optional parameter and an output schema, the description covers all necessary context: the action, the resource, and the supported networks. No gaps.

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%, and the parameter description in the schema is already comprehensive (including accepted aliases). The tool description merely restates the network options, adding no new semantic value beyond 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?

The description specifies the verb 'Return', the resource 'chain tip block height', and the scope 'for mainnet, testnet, signet, or liquid'. This clearly distinguishes it from sibling tools like get_block which return full block data.

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 states when to use the tool (to get the latest block height on supported networks). Given the simplicity of the tool and the fact that no sibling provides exactly this, explicit exclusions are not necessary. Still, no guidance on when not to use it or alternatives.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.1/5.0
Disambiguation2/5

The set mixes two unrelated domains — Bitcoin mempool explorer tools and the much larger Pipeworx data-query platform — and within the Pipeworx half several tools route to the same 5,743-tool catalog (ask_pipeworx, deep_research, discover_tools, suggest_questions). ask_pipeworx_beta is currently an exact behavioral duplicate of ask_pipeworx, and the polymarket_* family has fuzzy boundaries (arbitrage vs edges vs fill_risk, with fill-checking living in both polymarket_arbitrage and polymarket_fill_risk), so an agent must read long descriptions to avoid misselection.

Naming Consistency3/5

All names use snake_case and there are recognizable sub-families (get_* Bitcoin lookups, ask_pipeworx_*, polymarket_*), but conventions are mixed across the whole set: bare-noun state tools (block_height, hashrate, mempool_stats, mining_pools) sit beside verb_noun actions (get_block, list_subscriptions), and prefix placement is inconsistent (ask_pipeworx vs pipeworx_trending/pipeworx_feedback). The naming is readable but not predictable enough to guess a tool's name from its function.

Tool Count2/5

41 tools is well past the 25+ threshold for a coherent server, and the count is inflated by bundling two unrelated products under a server named after only the smaller half (~10 Bitcoin tools vs ~31 Pipeworx tools). Many Pipeworx tools are convenience wrappers around one universal router, adding surface area without adding genuinely new capabilities.

Completeness3/5

Each half is internally workable: the Bitcoin side covers blocks, transactions, addresses, fees, hashrate, and pools, while the Pipeworx side provides broad query, research, subscription, and memory lifecycles. However, there are notable gaps relative to each domain (no block-list/fee-history endpoints on the explorer side; no direct per-source CRUD on the data side), and no single coherent domain is fully served because the server's stated identity matches only a fraction of its tools.