Skip to main content
Glama
openSVM
by openSVM

get_top_boosted_tokens

Identify tokens with the highest active boosts across decentralized exchanges using DexScreener API data. Access real-time insights to prioritize trending tokens.

Instructions

Get tokens with most active boosts

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function that executes the tool logic by fetching top boosted tokens from DexScreener API endpoint '/token-boosts/top/v1' using the rate-limited fetch method.
    async getTopBoostedTokens(): Promise<TokenBoost[]> { return this.fetch<TokenBoost[]>('/token-boosts/top/v1', tokenRateLimiter); }
  • Dispatch handler in the MCP CallToolRequestSchema handler that routes the 'get_top_boosted_tokens' tool call to the DexScreenerService method.
    case 'get_top_boosted_tokens': result = await this.dexService.getTopBoostedTokens(); break;
  • Tool schema definition in server capabilities, specifying no input parameters.
    get_top_boosted_tokens: { description: 'Get tokens with most active boosts', inputSchema: { type: 'object', properties: {}, required: [], }, },
  • src/index.ts:224-231 (registration)
    Tool registration in the ListToolsRequestSchema handler response.
    name: 'get_top_boosted_tokens', description: 'Get tokens with most active boosts', inputSchema: { type: 'object', properties: {}, required: [], }, },
  • src/index.ts:113-120 (registration)
    Tool registration in server capabilities declaration.
    get_top_boosted_tokens: { description: 'Get tokens with most active boosts', inputSchema: { type: 'object', properties: {}, required: [], }, },

Other Tools

Related Tools

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