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