search_pairs

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

Free-text search across all chains. Returns up to 30 pairs.

Parameters

NameTypeRequiredDescription
querystringyes

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":"search_pairs","arguments":{}}}'

Response shape

FieldTypeDescription
schemaVersionstringAPI schema version
pairsarrayUp to 30 matching pairs
Full JSON Schema
{
  "type": "object",
  "description": "Search results across all chains",
  "properties": {
    "schemaVersion": {
      "type": "string",
      "description": "API schema version"
    },
    "pairs": {
      "type": "array",
      "description": "Up to 30 matching pairs",
      "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"
          }
        }
      }
    }
  }
}

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