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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"type": "object"
}
Implementation Reference
- src/tools.ts:521-522 (handler)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: {} } },
- src/tools.ts:363-367 (schema)Input schema definition for the 'latest_statistics' tool, which requires no parameters.inputSchema: { type: 'object', properties: {} } },
- src/api-client.ts:137-140 (helper)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; }