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

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

Always returns: chain, token_address, pair_count, pairs

FieldTypeDescription
chainstringChain id that was queried
token_addressstringToken contract address that was queried
pair_countnumberNumber of pools returned (>=1; an empty result raises not_found)
pairsarrayPools trading this token on that chain
Full JSON Schema
{
  "type": "object",
  "description": "Every DEX Screener pool for one token address on one chain",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Chain id that was queried"
    },
    "token_address": {
      "type": "string",
      "description": "Token contract address that was queried"
    },
    "pair_count": {
      "type": "number",
      "description": "Number of pools returned (>=1; an empty result raises not_found)"
    },
    "pairs": {
      "type": "array",
      "description": "Pools trading this token on that chain",
      "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",
            "description": "Base token address/name/symbol"
          },
          "quoteToken": {
            "type": "object",
            "description": "Quote token address/name/symbol"
          },
          "priceNative": {
            "type": "string",
            "description": "Price in the quote token"
          },
          "priceUsd": {
            "type": [
              "string",
              "null"
            ],
            "description": "Price in USD"
          },
          "txns": {
            "type": "object",
            "description": "Buy/sell counts over m5/h1/h6/h24"
          },
          "volume": {
            "type": "object",
            "description": "Volume over m5/h1/h6/h24"
          },
          "liquidity": {
            "type": "object",
            "description": "Liquidity in USD and both tokens"
          },
          "fdv": {
            "type": [
              "number",
              "null"
            ],
            "description": "Fully diluted valuation"
          },
          "marketCap": {
            "type": [
              "number",
              "null"
            ],
            "description": "Market capitalisation"
          }
        }
      }
    }
  },
  "required": [
    "chain",
    "token_address",
    "pair_count",
    "pairs"
  ]
}

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 September 10, 2026