DEX Screener
liveCryptoMarketsReal-time DEX prices and liquidity across all major EVM + Solana chains. Keyless.
6tools
0msauth
free tier50 calls/day
Tools
get_pairrequired: chain, pair_addressSingle pair detail.
Parameters
NameTypeDescription
chainreqstring—pair_addressreqstring—Try it
Response
get_tokenrequired: chain, token_addressAll pairs for a token on one chain.
Parameters
NameTypeDescription
chainreqstring—token_addressreqstring—Try it
Response
search_pairsrequired: queryFree-text search across pairs.
Parameters
NameTypeDescription
queryreqstring—Try it
Response
latest_token_profilesNewest token profiles.
No parameters required.
Try it
Response
latest_boosted_tokensTokens being actively promoted.
No parameters required.
Try it
Response
token_boosts_topMost-boosted tokens.
Parameters
NameTypeDescription
chainoptstring—tokenoptstring—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");