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
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":{}}}'
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.