latest_inflation_rate
Retrieve current inflation data in Turkey using the FonParam MCP server. Access accurate inflation rates to analyze economic trends and make informed financial decisions.
Instructions
Son enflasyon verisini getirir
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"type": "object"
}
Implementation Reference
- src/tools.ts:442-449 (registration)Registration of the 'latest_inflation_rate' tool including name, description, and empty input schema.{ name: 'latest_inflation_rate', description: 'Son enflasyon verisini getirir', inputSchema: { type: 'object', properties: {} } },
- src/tools.ts:538-539 (handler)Tool handler dispatch in handleToolCall method that executes the tool by calling apiClient.getLatestInflationRate().case 'latest_inflation_rate': return await this.apiClient.getLatestInflationRate();
- src/api-client.ts:177-180 (helper)Core implementation of fetching the latest inflation rate from the '/inflation/latest' API endpoint.async getLatestInflationRate(): Promise<InflationRate> { const response: AxiosResponse<InflationRate> = await this.client.get('/inflation/latest'); return response.data; }
- src/tools.ts:445-448 (schema)Input schema for the tool (empty object, no parameters required).inputSchema: { type: 'object', properties: {} }