search_pairs
Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp
Free-text search across all DEX Screener chains for trading pairs matching a token name, symbol, or address. Returns up to 30 pairs with price USD, liquidity, 24h volume, and chain/DEX info.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes |
Example call
Arguments
{
"query": "USDC ETH"
}
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":"search_pairs","arguments":{"query":"USDC ETH"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_pairs', {
"query": "USDC ETH"
});
More examples
{
"query": "SOL USDT solana"
}
Response shape
Always returns: query, pair_count, pairs
| Field | Type | Description |
|---|---|---|
query | string | Query that was searched |
pair_count | number | Number of pairs returned |
pairs | array | Matching pairs |
Full JSON Schema
{
"type": "object",
"description": "Free-text pair search across all chains",
"properties": {
"query": {
"type": "string",
"description": "Query that was searched"
},
"pair_count": {
"type": "number",
"description": "Number of pairs returned"
},
"pairs": {
"type": "array",
"description": "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",
"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": [
"query",
"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.