DEX Screener
live CryptoMarketsReal-time DEX prices and liquidity across all major EVM + Solana chains. Keyless.
6 tools
0ms auth
free tier 50 calls/day
Tools
get_pair
required: chain, pair_address Single pair detail.
Parameters
Name Type Description
chain req string — pair_address req string — Try it
Response
get_token
required: chain, token_address All pairs for a token on one chain.
Parameters
Name Type Description
chain req string — token_address req string — Try it
Response
search_pairs
required: query Free-text search across pairs.
Parameters
Name Type Description
query req string — Try it
Response
latest_token_profiles Newest token profiles.
No parameters required.
Try it
Response
latest_boosted_tokens Tokens being actively promoted.
No parameters required.
Try it
Response
token_boosts_top Most-boosted tokens.
Parameters
Name Type Description
chain opt string — token opt string — Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/dexscreener/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/dexscreener/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_pair","arguments":{"chain": "example", "pair_address": "example"}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_pair", {"chain":"example","pair_address":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("real-time dex prices and liquidity across all major evm + solana chains");