get_token
Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp
All trading pairs for a token address on one chain.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | Chain id |
token_address | string | yes | Token contract address |
Example call
Arguments
{
"chain": "ethereum",
"token_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
}
curl
curl -X POST https://gateway.pipeworx.io/dexscreener/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_token","arguments":{"chain":"ethereum","token_address":"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_token', {
"chain": "ethereum",
"token_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
});
More examples
{
"chain": "polygon",
"token_address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174"
}
Response shape
| Field | Type | Description |
|---|---|---|
schemaVersion | string | API schema version |
pairs | array | null | Array of trading pairs for the token |
Full JSON Schema
{
"type": "object",
"description": "Token with all trading pairs response",
"properties": {
"schemaVersion": {
"type": "string",
"description": "API schema version"
},
"pairs": {
"type": [
"array",
"null"
],
"description": "Array of trading pairs for the token",
"items": {
"type": "object",
"properties": {
"chainId": {
"type": "string",
"description": "Chain identifier"
},
"dexId": {
"type": "string",
"description": "DEX identifier"
},
"url": {
"type": "string",
"description": "URL to pair on DEX Screener"
},
"pairAddress": {
"type": "string",
"description": "Pair/pool contract address"
},
"baseToken": {
"type": "object"
},
"quoteToken": {
"type": "object"
},
"priceNative": {
"type": "string"
},
"priceUsd": {
"type": "string"
},
"txns": {
"type": "object"
},
"volume": {
"type": "object"
},
"liquidity": {
"type": "object"
},
"fdv": {
"type": [
"number",
"null"
]
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dexscreener": {
"url": "https://gateway.pipeworx.io/dexscreener/mcp"
}
}
}
See Getting Started for client-specific install steps.