DEX Screener
liveCryptoMarketsReal-time DEX prices and liquidity across all major EVM + Solana chains. Keyless.
Tools
get_pairPair detail (price USD/native, liquidity, 24h volume, 5m/1h/6h/24h tx counts).
No parameters required.
Try it
get_tokenAll trading pairs for a token address on one chain.
No parameters required.
Try it
search_pairsFree-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.
No parameters required.
Try it
latest_token_profilesNewest token profiles created (cross-chain).
No parameters required.
Try it
latest_boosted_tokensTokens being actively promoted on DEX Screener.
No parameters required.
Try it
token_boosts_topMost-boosted tokens, optionally filtered to a chain / token.
No parameters required.
Try it
dexscreener_screenerA filterable screen for new/trending tokens on one chain (default solana), by liquidity, volume and market cap — composes DEX Screener's promoted-token lists (latest_token_profiles + latest_boosted_to
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/dexscreener/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'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":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_pair", {});// Or ask in plain English:
const answer = await px.ask("real-time dex prices and liquidity across all major evm + solana chains");