token_boosts_top

Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp

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

Parameters

NameTypeRequiredDescription
chainstringno
tokenstringnoToken address (chain required if passed)

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('token_boosts_top', {});

More examples

{
  "chain": "solana"
}

Response shape

Always returns: boost_count, filtered, boosts

FieldTypeDescription
chainstringChain filter that was applied, when one was passed
tokenstringToken filter that was applied, when one was passed
boost_countnumberNumber of boost entries returned
filteredbooleanWhether a chain/token filter was applied
boostsarrayBoost entries
Full JSON Schema
{
  "type": "object",
  "description": "Most-boosted tokens, optionally filtered to a chain/token",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Chain filter that was applied, when one was passed"
    },
    "token": {
      "type": "string",
      "description": "Token filter that was applied, when one was passed"
    },
    "boost_count": {
      "type": "number",
      "description": "Number of boost entries returned"
    },
    "filtered": {
      "type": "boolean",
      "description": "Whether a chain/token filter was applied"
    },
    "boosts": {
      "type": "array",
      "description": "Boost entries",
      "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"
          },
          "totalAmount": {
            "type": [
              "number",
              "null"
            ],
            "description": "Cumulative boost amount"
          },
          "icon": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token icon URL"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token description"
          }
        }
      }
    }
  },
  "required": [
    "boost_count",
    "filtered",
    "boosts"
  ]
}

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.

Regenerated from source · build September 10, 2026