stats

Pack: blockchair · Endpoint: https://gateway.pipeworx.io/blockchair/mcp

Fetch chain-wide blockchain statistics (block count, transaction volume, hash rate, mempool size, circulation, etc.) for a given chain (bitcoin, ethereum, dogecoin, and 12 others).

Parameters

NameTypeRequiredDescription
chainstringyes

Example call

Arguments

{
  "chain": "bitcoin"
}

curl

curl -X POST https://gateway.pipeworx.io/blockchair/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"stats","arguments":{"chain":"bitcoin"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('stats', {
  "chain": "bitcoin"
});

More examples

{
  "chain": "ethereum"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Chain-wide statistics from Blockchair API"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "blockchair": {
      "url": "https://gateway.pipeworx.io/blockchair/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026