get_token

Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp

All trading pairs for a token address on one chain.

Parameters

NameTypeRequiredDescription
chainstringyesChain id
token_addressstringyesToken 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

FieldTypeDescription
schemaVersionstringAPI schema version
pairsarray | nullArray 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.

Regenerated from source · build May 21, 2026