DEX Screener

liveCryptoMarkets

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

6tools
0msauth
free tier50 calls/day

Tools

get_pairrequired: chain, pair_address

Single pair detail.

Parameters
NameTypeDescription
chainreqstring
pair_addressreqstring
Try it
get_tokenrequired: chain, token_address

All pairs for a token on one chain.

Parameters
NameTypeDescription
chainreqstring
token_addressreqstring
Try it
search_pairsrequired: query

Free-text search across pairs.

Parameters
NameTypeDescription
queryreqstring
Try it
latest_token_profiles

Newest token profiles.

No parameters required.

Try it
latest_boosted_tokens

Tokens being actively promoted.

No parameters required.

Try it
token_boosts_top

Most-boosted tokens.

Parameters
NameTypeDescription
chainoptstring
tokenoptstring
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":{"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");