Skip to main content
Glama
kemalersin

FonParam MCP

by kemalersin

latest_inflation_rate

Retrieve current inflation data for Turkey to analyze economic trends and inform investment decisions using the FonParam API.

Instructions

Son enflasyon verisini getirir

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/tools.ts:442-449 (registration)
    Registers the 'latest_inflation_rate' tool in the MCP tools list with empty input schema.
    { name: 'latest_inflation_rate', description: 'Son enflasyon verisini getirir', inputSchema: { type: 'object', properties: {} } },
  • Handler case in handleToolCall that dispatches to the API client method.
    case 'latest_inflation_rate': return await this.apiClient.getLatestInflationRate();
  • Core implementation that performs the HTTP GET request to '/inflation/latest' and returns the InflationRate data.
    async getLatestInflationRate(): Promise<InflationRate> { const response: AxiosResponse<InflationRate> = await this.client.get('/inflation/latest'); return response.data; }
  • TypeScript interface defining the output schema for inflation rate data.
    export interface InflationRate { date: string; monthly_rate: number; yearly_rate: number; }

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