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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/services/dexscreener.ts:104-106 (handler)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); }
- src/index.ts:315-317 (handler)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;
- src/index.ts:113-120 (schema)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: [], }, },