network_info
Current Monero network state: latest indexed height, difficulty, network hashrate and mempool size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Current Monero network state: latest indexed height, difficulty, network hashrate and mempool size.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden for behavioral disclosure. It implies a read-only operation and lists the intended data, but does not explain potential nuances like indexing lag, whether the data is a snapshot, or error conditions. It is adequate but not rich.
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, front-loaded sentence that uses a colon to enumerate the key information. Every word earns its place without redundancy or fluff.
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?
The tool is simple with no output schema, so the description must explain what is returned. It lists the metrics, but it is a fragment rather than a complete sentence and does not specify the return structure or how it relates to sibling tools. It covers the essentials but leaves some gaps.
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?
There are zero parameters, so the baseline is 4. The description adds no parameter-level meaning, but none is needed since the schema has no properties.
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 states that the tool provides the current Monero network state, listing specific metrics (height, difficulty, hashrate, mempool size). It is not a tautology and differentiates from siblings like network_hashrate and network_mempool by presenting a combined snapshot, though it lacks a strong verb.
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 gives no guidance on when to use this tool versus alternatives such as network_hashrate or network_mempool. It does not mention any exclusions or prerequisites, leaving the agent to infer use cases.
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.