mining_pools
Pack: mempool-space · Endpoint: https://gateway.pipeworx.io/mempool-space/mcp
Block share by mining pool.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
period | string | no | 24h | 3d | 1w | 1m | 3m | 6m | 1y | 2y | 3y | all (default 1w) |
network | string | no |
Example call
Arguments
{
"period": "1w"
}
curl
curl -X POST https://gateway.pipeworx.io/mempool-space/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mining_pools","arguments":{"period":"1w"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mining_pools', {
"period": "1w"
});
Response shape
| Field | Type | Description |
|---|---|---|
pools | array | Mining pool block statistics |
lastEstimatedUpdate | number | Last update timestamp |
Full JSON Schema
{
"type": "object",
"properties": {
"pools": {
"type": "array",
"description": "Mining pool block statistics",
"items": {
"type": "object",
"properties": {
"poolId": {
"type": "number",
"description": "Pool ID"
},
"name": {
"type": "string",
"description": "Pool name"
},
"link": {
"type": "string",
"description": "Pool website link"
},
"blockCount": {
"type": "number",
"description": "Blocks mined in period"
},
"blockShare": {
"type": "number",
"description": "Share percentage"
},
"rank": {
"type": "number",
"description": "Rank by block count"
}
}
}
},
"lastEstimatedUpdate": {
"type": "number",
"description": "Last update timestamp"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mempool-space": {
"url": "https://gateway.pipeworx.io/mempool-space/mcp"
}
}
}
See Getting Started for client-specific install steps.