Skip to main content
Glama
BackpowCom

BackPow MCP Server

Official
by BackpowCom

Live network state

get_coin_oracle
Read-onlyIdempotent

Get live Proof of Work network stats—difficulty, hashrate, block reward, block height, and block time—with confidence from multiple pools; returns an error if collectors are unreachable.

Instructions

Current network state for one Proof of Work chain, measured by BackPow's stratum collector nodes: difficulty, derived network hashrate, block height, block reward, protocol block-time target versus the latest observed interval, and the source pool. Every response carries a confidence block — how many independent pool operators agreed, whether the reward figure is live or a static fallback, and how old the observation is. Networks whose collectors are stalled or unreachable return an error rather than zeros. Use for "what is Kaspa's current difficulty", "network hashrate of Monero", "current block reward". For economics use get_cost_of_production; for mining probability use calculate_solo_mining_odds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
coin_idYesCoin name or ticker, e.g. "Bitcoin", "BTC", "Kaspa", "bitcoin cash", "Monero". Ambiguous input is rejected with the list of matching networks rather than resolved to a guess, because several tickers are shared by more than one tracked chain (DGB, XVG and TARI among them).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare this as read-only, idempotent, and non-destructive. The description adds valuable behavioral context beyond annotations: data is measured by BackPow stratum collectors, ambiguity is rejected rather than guessed, stalled networks return errors instead of zeros, and responses include a confidence block describing observation age and fallback status. 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/5

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

The description is information-dense and well-structured: it leads with the core purpose and metrics, then confidence semantics, then error behavior, then usage and alternatives. Every sentence adds value, and there is no repetition or filler.

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 only one parameter and rich annotations, the description fully covers how the tool behaves, what the response includes, how to interpret confidence, and how to choose among siblings. Since there is no output schema, the description's explanation of return semantics and error behavior is especially important and is present.

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?

The input schema already provides 100% parameter coverage with a detailed description of coin_id, including examples and ambiguous-input handling. The tool description does not add extra parameter-level semantics beyond what the schema already states, so the baseline 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 names a specific verb and resource: retrieving current network state for one Proof of Work chain, with concrete metrics like difficulty, hashrate, block height, reward, and block-time target. It also explicitly differentiates from siblings by naming get_cost_of_production and calculate_solo_mining_odds as the tools for economics and mining probability.

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?

It gives explicit usage examples ("what is Kaspa's current difficulty", "network hashrate of Monero", "current block reward") and clearly states when to use alternatives: economics uses get_cost_of_production, mining probability uses calculate_solo_mining_odds. This leaves no ambiguity about tool selection.

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