get_token
Pack: blockscout · Endpoint: https://gateway.pipeworx.io/blockscout/mcp
“Token info for [contract]” / “what is contract [0x…]” / “ERC-20 / NFT metadata for [token]” — token contract metadata: name, symbol, decimals, total supply, holder count, contract type. Use for on-chain token characterization.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | |
contract | string | yes | Token contract address |
Example call
Arguments
{
"chain": "ethereum",
"contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
}
curl
curl -X POST https://gateway.pipeworx.io/blockscout/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_token","arguments":{"chain":"ethereum","contract":"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_token', {
"chain": "ethereum",
"contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Token contract metadata from Blockscout API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"blockscout": {
"url": "https://gateway.pipeworx.io/blockscout/mcp"
}
}
}
See Getting Started for client-specific install steps.