Skip to main content
Glama

latest_statistics

Retrieve current statistics for investment funds in Turkey using the FonParam MCP server, enabling analysis and comparison of fund data.

Instructions

Son istatistikleri getirir

Input Schema

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "properties": {}, "type": "object" }

Implementation Reference

  • The handler case within handleToolCall that executes the 'latest_statistics' tool by calling the API client's getLatestStatistics method.
    case 'latest_statistics': return await this.apiClient.getLatestStatistics();
  • src/tools.ts:360-367 (registration)
    Registration of the 'latest_statistics' tool in the getTools() method, including its name, description, and empty input schema.
    { name: 'latest_statistics', description: 'Son istatistikleri getirir', inputSchema: { type: 'object', properties: {} } },
  • Input schema definition for the 'latest_statistics' tool, which requires no parameters.
    inputSchema: { type: 'object', properties: {} } },
  • Helper method in API client that performs the HTTP GET request to '/statistics/latest' to retrieve the latest daily statistics.
    async getLatestStatistics(): Promise<DailyStatistics> { const response: AxiosResponse<DailyStatistics> = await this.client.get('/statistics/latest'); return response.data; }

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/kemalersin/fonparam-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server