token_metadata
Pack: alchemy-eth · Endpoint: https://gateway.pipeworx.io/alchemy-eth/mcp
ERC-20 metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
contract | string | yes | |
chain | string | no |
Example call
Arguments
{
"contract": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
}
curl
curl -X POST https://gateway.pipeworx.io/alchemy-eth/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"token_metadata","arguments":{"contract":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('token_metadata', {
"contract": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
});
Response shape
| Field | Type | Description |
|---|---|---|
decimals | integer | Token decimal places |
logo | string | Token logo URL |
name | string | Token name |
symbol | string | Token symbol |
Full JSON Schema
{
"type": "object",
"properties": {
"decimals": {
"type": "integer",
"description": "Token decimal places"
},
"logo": {
"type": "string",
"description": "Token logo URL"
},
"name": {
"type": "string",
"description": "Token name"
},
"symbol": {
"type": "string",
"description": "Token symbol"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"alchemy-eth": {
"url": "https://gateway.pipeworx.io/alchemy-eth/mcp"
}
}
}
See Getting Started for client-specific install steps.