DEX Screener

liveCryptoMarkets

Real-time DEX prices and liquidity across all major EVM + Solana chains. Keyless.

7tools
0msauth
free tier50 calls/day

Tools

get_pair

Pair detail (price USD/native, liquidity, 24h volume, 5m/1h/6h/24h tx counts).

No parameters required.

▶Try it
get_token

All trading pairs for a token address on one chain.

No parameters required.

▶Try it
search_pairs

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.

No parameters required.

▶Try it
latest_token_profiles

Newest token profiles created (cross-chain).

No parameters required.

▶Try it
latest_boosted_tokens

Tokens being actively promoted on DEX Screener.

No parameters required.

▶Try it
token_boosts_top

Most-boosted tokens, optionally filtered to a chain / token.

No parameters required.

▶Try it
dexscreener_screener

A 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.

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

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", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("real-time dex prices and liquidity across all major evm + solana chains");