latest_boosted_tokens
Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp
Tokens being actively promoted on DEX Screener.
Example call
curl -X POST https://gateway.pipeworx.io/dexscreener/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"latest_boosted_tokens","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
schemaVersion | string | API schema version |
boosts | array | Latest boosted tokens |
Full JSON Schema
{
"type": "object",
"description": "Tokens being actively promoted on DEX Screener",
"properties": {
"schemaVersion": {
"type": "string",
"description": "API schema version"
},
"boosts": {
"type": "array",
"description": "Latest boosted tokens",
"items": {
"type": "object",
"properties": {
"chainId": {
"type": "string",
"description": "Chain identifier"
},
"tokenAddress": {
"type": "string",
"description": "Token contract address"
},
"url": {
"type": "string",
"description": "Boost profile URL"
},
"amount": {
"type": [
"number",
"null"
],
"description": "Boost amount"
},
"icon": {
"type": [
"string",
"null"
],
"description": "Token icon URL"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dexscreener": {
"url": "https://gateway.pipeworx.io/dexscreener/mcp"
}
}
}
See Getting Started for client-specific install steps.