Skip to main content
Glama

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

NameRequiredDescriptionDefault

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: {} } },
  • Tool handler dispatch in handleToolCall method that executes the tool by calling apiClient.getLatestInflationRate().
    case 'latest_inflation_rate': return await this.apiClient.getLatestInflationRate();
  • 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; }
  • Input schema for the tool (empty object, no parameters required).
    inputSchema: { type: 'object', properties: {} }

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