network_mempool
Mempool size time series (number of pending transactions). window in 1h,24h,7d,30d,90d,1y,5y.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| window | No | 24h |
Mempool size time series (number of pending transactions). window in 1h,24h,7d,30d,90d,1y,5y.
| Name | Required | Description | Default |
|---|---|---|---|
| window | No | 24h |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden of behavioral disclosure. It states the output is a time series of pending transaction counts, but does not mention return format, aggregation details, or any operational constraints like rate limits or data availability.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that leads with the core purpose and then lists the window options. Every word earns its place with no unnecessary filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter read tool, the description provides the essential output type and parameter options. It lacks a bit of detail on response shape, but the complexity is low and the description is generally sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although the schema has 0% description coverage, the description explicitly enumerates all valid window values ('1h,24h,7d,30d,90d,1y,5y'), which fully compensates for the schema's lack of parameter details and adds clear meaning beyond the generic 'string' type.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource ('Mempool size time series') and metric ('number of pending transactions'), distinguishing it from sibling network stats. However, it lacks an explicit verb like 'get' or 'returns', so it falls short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It only lists valid window values, not the context for selecting this tool or excluding others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools are clearly grouped by prefix (network_, pool_, haveno_, reorg), but there is overlap: get_block vs search_block both return block details, price vs haveno_book both expose the current Haveno order book, and chain_fork_window, recent_orphans, and reorgs all touch chain-fork/orphan phenomena. The descriptions help separate them, but an agent could easily pick the wrong one.
The dominant convention is a domain_noun pattern (network_hashrate, pool_distribution, haveno_premium, chain_provenance), which is predictable and readable. Minor deviations like get_block, search_block, price, and reorgs break the pattern slightly, but not enough to cause confusion.
18 tools is on the heavier side but reasonable for a metrics/analytics server covering network health, mining pools, reorgs, blocks, and Haveno market data. A few endpoints could potentially be consolidated, but each tool generally earns its place.
The surface covers current network state, historical time series, block lookup, orphan/reorg analysis, pool attribution, and Haveno market data, which is solid for a Monero metrics server. Minor gaps like transaction-level lookup or a direct chain-range endpoint are absent, but agents can work around them using the provided block and fork-window tools.