address
Pack: blockchair · Endpoint: https://gateway.pipeworx.io/blockchair/mcp
Address dashboard (balance + recent txs).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | |
address | string | yes |
Example call
Arguments
{
"chain": "bitcoin",
"address": "1A1z7agoat4JNFSQbkBqMub8QwN6sSvRQu"
}
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":"address","arguments":{"chain":"bitcoin","address":"1A1z7agoat4JNFSQbkBqMub8QwN6sSvRQu"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('address', {
"chain": "bitcoin",
"address": "1A1z7agoat4JNFSQbkBqMub8QwN6sSvRQu"
});
More examples
{
"chain": "ethereum",
"address": "0x742d35Cc6634C0532925a3b844Bc7e7595f42bE1"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Address dashboard with balance, transaction count, and recent transactions"
}
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.