Skip to main content
Glama
openSVM
by openSVM

get_latest_token_profiles

Retrieve current token profiles from DexScreener to analyze cryptocurrency assets and their market data across multiple blockchains.

Instructions

Get the latest token profiles

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The primary handler function that implements the core logic of the 'get_latest_token_profiles' tool by making a rate-limited API call to DexScreener's latest token profiles endpoint.
    async getLatestTokenProfiles(): Promise<TokenProfile[]> { return this.fetch<TokenProfile[]>('/token-profiles/latest/v1', tokenRateLimiter); }
  • src/index.ts:97-104 (registration)
    Tool registration in MCP server capabilities, defining the tool name, description, and empty input schema.
    get_latest_token_profiles: { description: 'Get the latest token profiles', inputSchema: { type: 'object', properties: {}, required: [], }, },
  • Dispatch logic in the MCP 'tools/call' request handler that invokes the DexScreenerService handler for this tool.
    case 'get_latest_token_profiles': result = await this.dexService.getLatestTokenProfiles(); break;
  • Tool schema definition returned by the MCP 'tools/list' handler, matching the registration schema.
    name: 'get_latest_token_profiles', description: 'Get the latest token profiles', 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