Skip to main content
Glama
0xcWalter

BackPow MCP Server

by 0xcWalter

Cost of production

get_cost_of_production
Read-onlyIdempotent

Calculate mining cost of production for any proof-of-work coin: compare electricity cost against spot price to see profitability, break-even electricity rate, and 30-day trend.

Instructions

Cost of Production (CoP) for one Proof of Work coin: the all-in electricity cost of mining one unit on the most efficient hardware BackPow tracks for that algorithm, compared against spot price. Returns CoP in USD, spot, gross margin, whether miners are currently above or below water, the reference machine and tariff behind the figure, and a 30-day trend including whether the reference machine changed (which indicates the efficiency frontier moved). Accepts a custom electricity rate. Use for "is mining X profitable", "what does it cost to produce one Monero", "are miners underwater", or "break-even electricity price". For a specific rig rather than a coin, use get_hardware_benchmarks. For block-finding 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: several tickers are shared by multiple tracked chains (DGB by 5, XVG by 5, TARI by 4).
electricity_cost_usd_kwhNoElectricity price in USD per kWh. Defaults to 0.069, an industrial hosting tariff; residential rates are commonly 3-5x higher and change profitability conclusions.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description doesn't need to restate safety. It adds useful behavioral detail: the return fields, the meaning of a reference-machine change indicating the efficiency frontier moved, and the effect of a custom electricity rate. 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 dense but every sentence earns its place: a crisp definition, the output fields, an optional-input note, concrete use cases, and sibling routing. The definition is front-loaded and there is no 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?

Although there is no output schema, the description enumerates the return values (CoP in USD, spot, gross margin, above/below water, reference machine and tariff, 30-day trend). It also covers usage context, parameter semantics via schema, and alternative tools, so an agent has everything needed to select and invoke it correctly.

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 fully documents coin_id and electricity_cost_usd_kwh. The description adds interpretive context by explaining that CoP is computed on the most efficient hardware and that a custom electricity rate is accepted, but it intentionally leaves parameter-level details to 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 states a specific verb and resource: it computes the all-in electricity cost of mining one unit of a Proof of Work coin on the most efficient tracked hardware, compared to spot price. It clearly distinguishes itself from siblings by naming the object of interest (a coin's production cost) and explicitly pointing to get_hardware_benchmarks and calculate_solo_mining_odds as different tools.

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 use cases ('is mining X profitable', 'what does it cost to produce one Monero', 'are miners underwater', 'break-even electricity price'). It also gives explicit exclusions and alternatives: use get_hardware_benchmarks for a specific rig and calculate_solo_mining_odds for block-finding probability.

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