Skip to main content
Glama
openSVM
by openSVM

get_latest_token_profiles

Fetch real-time token profiles across multiple blockchains using the DexScreener API for accurate and up-to-date market insights.

Instructions

Get the latest token profiles

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function that implements the tool logic by calling the DexScreener API endpoint '/token-profiles/latest/v1' with rate limiting.
    async getLatestTokenProfiles(): Promise<TokenProfile[]> { return this.fetch<TokenProfile[]>('/token-profiles/latest/v1', tokenRateLimiter); }
  • Input schema definition for the 'get_latest_token_profiles' tool in server capabilities, specifying no input parameters.
    get_latest_token_profiles: { description: 'Get the latest token profiles', inputSchema: { type: 'object', properties: {}, required: [], }, },
  • src/index.ts:205-212 (registration)
    Tool registration in the ListTools handler response, defining name, description, and input schema.
    { name: 'get_latest_token_profiles', description: 'Get the latest token profiles', inputSchema: { type: 'object', properties: {}, required: [], },
  • src/index.ts:307-309 (registration)
    Tool dispatch/registration in the CallTool handler switch statement, routing calls to the DexScreenerService method.
    case 'get_latest_token_profiles': result = await this.dexService.getLatestTokenProfiles(); break;

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