address
Pack: blockstream-info · Endpoint: https://gateway.pipeworx.io/blockstream-info/mcp
Address summary (chain + mempool stats).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
address | string | yes | |
network | string | no |
Example call
curl -X POST https://gateway.pipeworx.io/blockstream-info/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"address","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
address | string | Bitcoin address |
chain_stats | object | Chain statistics |
mempool_stats | object | Mempool statistics |
Full JSON Schema
{
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "Bitcoin address"
},
"chain_stats": {
"type": "object",
"description": "Chain statistics",
"properties": {
"funded_txo_count": {
"type": "number",
"description": "Funded output count"
},
"funded_txo_sum": {
"type": "number",
"description": "Funded sum in satoshis"
},
"spent_txo_count": {
"type": "number",
"description": "Spent output count"
},
"spent_txo_sum": {
"type": "number",
"description": "Spent sum in satoshis"
},
"tx_count": {
"type": "number",
"description": "Total transaction count"
}
}
},
"mempool_stats": {
"type": "object",
"description": "Mempool statistics",
"properties": {
"funded_txo_count": {
"type": "number",
"description": "Mempool funded count"
},
"funded_txo_sum": {
"type": "number",
"description": "Mempool funded sum"
},
"spent_txo_count": {
"type": "number",
"description": "Mempool spent count"
},
"spent_txo_sum": {
"type": "number",
"description": "Mempool spent sum"
},
"tx_count": {
"type": "number",
"description": "Mempool transaction count"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"blockstream-info": {
"url": "https://gateway.pipeworx.io/blockstream-info/mcp"
}
}
}
See Getting Started for client-specific install steps.