Skip to main content
Glama
openSVM
by openSVM

get_latest_boosted_tokens

Retrieve recently boosted tokens from the DexScreener MCP Server to identify trending DEX pairs and tokens across multiple blockchains, enhancing market insights and decision-making.

Instructions

Get the latest boosted tokens

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function that executes the tool logic by fetching latest boosted tokens from DexScreener API endpoint '/token-boosts/latest/v1'.
    async getLatestBoostedTokens(): Promise<TokenBoost[]> { return this.fetch<TokenBoost[]>('/token-boosts/latest/v1', tokenRateLimiter);
  • Dispatch handler in the MCP callTool request that invokes the DexScreener service method.
    case 'get_latest_boosted_tokens': result = await this.dexService.getLatestBoostedTokens(); break;
  • Tool schema definition in server capabilities, specifying no input parameters.
    get_latest_boosted_tokens: { description: 'Get the latest boosted tokens', inputSchema: { type: 'object', properties: {}, required: [], }, },
  • Duplicate tool schema in the listTools response handler.
    name: 'get_latest_boosted_tokens', description: 'Get the latest boosted tokens', inputSchema: { type: 'object', properties: {}, required: [], },
  • src/index.ts:89-185 (registration)
    Server initialization where the tool is registered in MCP capabilities.tools.
    this.server = new Server( { name: 'dexscreener-mcp-server', version: '0.1.0', }, { capabilities: { tools: { get_latest_token_profiles: { description: 'Get the latest token profiles', inputSchema: { type: 'object', properties: {}, required: [], }, }, get_latest_boosted_tokens: { description: 'Get the latest boosted tokens', inputSchema: { type: 'object', properties: {}, required: [], }, }, get_top_boosted_tokens: { description: 'Get tokens with most active boosts', inputSchema: { type: 'object', properties: {}, required: [], }, }, get_token_orders: { description: 'Check orders paid for a specific token', inputSchema: { type: 'object', properties: { chainId: { type: 'string', description: 'Chain ID (e.g., "solana")', }, tokenAddress: { type: 'string', description: 'Token address', }, }, required: ['chainId', 'tokenAddress'], }, }, get_pairs_by_chain_and_address: { description: 'Get one or multiple pairs by chain and pair address', inputSchema: { type: 'object', properties: { chainId: { type: 'string', description: 'Chain ID (e.g., "solana")', }, pairId: { type: 'string', description: 'Pair address', }, }, required: ['chainId', 'pairId'], }, }, get_pairs_by_token_addresses: { description: 'Get one or multiple pairs by token address (max 30)', inputSchema: { type: 'object', properties: { tokenAddresses: { type: 'string', description: 'Comma-separated token addresses', }, }, required: ['tokenAddresses'], }, }, search_pairs: { description: 'Search for pairs matching query', inputSchema: { type: 'object', properties: { query: { type: 'string', description: 'Search query', }, }, required: ['query'], }, }, }, resources: resources } } );

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