Skip to main content
Glama
openSVM

DexScreener MCP Server

by openSVM

get_latest_boosted_tokens

Retrieve recently promoted cryptocurrency tokens from decentralized exchanges to identify emerging market opportunities.

Instructions

Get the latest boosted tokens

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function that executes the tool logic by fetching the latest boosted tokens from the DexScreener API endpoint '/token-boosts/latest/v1' using the service's internal fetch method with rate limiting.
    async getLatestBoostedTokens(): Promise<TokenBoost[]> {
      return this.fetch<TokenBoost[]>('/token-boosts/latest/v1', tokenRateLimiter);
    }
  • src/index.ts:105-112 (registration)
    Registers the tool in the MCP server capabilities, defining its description and input schema (empty object, no required params).
    get_latest_boosted_tokens: {
      description: 'Get the latest boosted tokens',
      inputSchema: {
        type: 'object',
        properties: {},
        required: [],
      },
    },
  • Dispatches the tool call in the MCP 'tools/call' request handler by invoking the DexScreenerService method.
    case 'get_latest_boosted_tokens':
      result = await this.dexService.getLatestBoostedTokens();
      break;
  • Defines the tool schema returned by the MCP 'tools/list' request handler.
    name: 'get_latest_boosted_tokens',
    description: 'Get the latest boosted tokens',
    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