token_boosts_top
Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp
Most-boosted tokens, optionally filtered to a chain / token.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | no | |
token | string | no | Token address (chain required if passed) |
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":"token_boosts_top","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
schemaVersion | string | API schema version |
boosts | array | Top boosted tokens |
Full JSON Schema
{
"type": "object",
"description": "Most-boosted tokens optionally filtered by chain/token",
"properties": {
"schemaVersion": {
"type": "string",
"description": "API schema version"
},
"boosts": {
"type": "array",
"description": "Top 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": "Total 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.