BLACKCOIN / PROTOCOL V4AGENTS

AGENT-NATIVE CHAIN / FIRST-PARTY MCP

Point any AI agent at the verified chain.

projectblackcoin.org runs a remote MCP server over the same fail-closed, request-bound public API that powers this site. Add one URL to any MCP-capable agent — Claude Code, Claude Desktop, or anything speaking Streamable HTTP — and it can query blocks, addresses, payouts, supply, and migration state with zero installation and no key. Plain-LLM systems get llms.txt and llms-full.txt.

Connect in one line

claude mcp add --transport http blackcoin https://projectblackcoin.org/mcp

Read-only, CORS-open, 240 requests/minute per client. The server is stateless Streamable HTTP: POST JSON-RPC (initialize, tools/list, tools/call) — no session required.

Tools

  • get_chain_statusHeight, sync state, per-index coverage (disclosed as from_height/complete).
  • get_live_snapshotQuorum-verified live state with conditional next-block estimates.
  • get_migration_statusReplay attestation and the published consensus schedule.
  • get_chain_identityGenesis hash, network magic, prefixes, lifecycle heights, source commit.
  • get_supplyReconciled supply taxonomy with machine-tested equations.
  • get_block / get_transaction / get_address / get_shadow_recordAny record, by identifier.
  • searchClassify a height, hash, txid, or address to its exact record.
  • get_recent_blocks / get_eventsThe newest verified blocks; filtered payout history with coverage.
  • get_shadow_supply / get_leaderboardShadow supply pools; top holders (lower-bound under partial coverage).
  • get_network / get_network_seriesLive network health; hourly hashrate/difficulty/interval series.
  • get_analytics_seriesPer-height PoW/PoS issuance (exact sats) over a range.
  • get_address_utxosThe unspent outputs of an address — the set you'd spend from.
  • get_mempoolPending mempool: count, bytes, and txids.
  • get_transaction_hex / get_block_hexRaw serialized hex for decode / re-broadcast.

Agents receive the same guardrails humans do: synthetic Gold Rush credits are phase-locked accounting (never balances or yield), next-block values are conditional estimates, and heights — not dates — control every lifecycle boundary. Every number reproduces on your own node via the reproduction contract.

Resources & prompts

Beyond tools, the server advertises MCP resources (fetch with resources/read) and canned analysis prompts (prompts/get):

  • blackcoin://contract/openapiThe full machine-readable API contract.
  • blackcoin://chain/identityGenesis hash, network magic, prefixes, lifecycle heights, source commit.
  • blackcoin://guide/agentsFraming rules, endpoint map, and error model for agents.
  • audit_supplyWalk the reconciled supply taxonomy and its machine-checked equations.
  • explain_migrationExplain the Protocol V4 migration schedule from live lifecycle state.
  • trace_addressTrace an address's base-chain and synthetic payout history.