Skip to main content
Glama
openSVM
by openSVM

get_top_boosted_tokens

Retrieve tokens with the highest active boosts from DexScreener to identify trending assets across multiple blockchains.

Instructions

Get tokens with most active boosts

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function that fetches the top boosted tokens from the DexScreener API endpoint '/token-boosts/top/v1' using the service's internal fetch method with rate limiting.
    async getTopBoostedTokens(): Promise<TokenBoost[]> { return this.fetch<TokenBoost[]>('/token-boosts/top/v1', tokenRateLimiter); }
  • Input schema definition for the tool in the MCP server capabilities declaration, specifying no input parameters required.
    get_top_boosted_tokens: { description: 'Get tokens with most active boosts', inputSchema: { type: 'object', properties: {}, required: [], }, },
  • src/index.ts:315-317 (registration)
    Registration and dispatch logic in the MCP callTool request handler switch statement, invoking the DexScreenerService method.
    case 'get_top_boosted_tokens': result = await this.dexService.getTopBoostedTokens(); break;
  • Tool schema returned in the MCP listTools request handler response.
    name: 'get_top_boosted_tokens', description: 'Get tokens with most active boosts', inputSchema: { type: 'object', properties: {}, required: [], }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/openSVM/dexscreener-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server