Skip to main content
Glama
kemalersin

FonParam MCP

by kemalersin

monthly_inflation_rate

Retrieve inflation data for a specific month and year to analyze economic trends and inform financial decisions.

Instructions

Belirli bir ay ve yıldaki enflasyon verisini getirir

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearYesYıl
monthYesAy (1-12)

Implementation Reference

  • Handler for the 'monthly_inflation_rate' tool that calls the API client to get inflation rate for specified year and month.
    case 'monthly_inflation_rate':
      return await this.apiClient.getInflationRateByMonth(args.year, args.month);
  • src/tools.ts:450-470 (registration)
    Registration of the 'monthly_inflation_rate' tool in the getTools() method, defining name, description, and input schema.
    {
      name: 'monthly_inflation_rate',
      description: 'Belirli bir ay ve yıldaki enflasyon verisini getirir',
      inputSchema: {
        type: 'object',
        properties: {
          year: {
            type: 'number',
            description: 'Yıl',
            minimum: 2000
          },
          month: {
            type: 'number',
            description: 'Ay (1-12)',
            minimum: 1,
            maximum: 12
          }
        },
        required: ['year', 'month']
      }
    }
  • Input schema for the 'monthly_inflation_rate' tool, specifying year (number >=2000) and month (1-12) as required parameters.
    inputSchema: {
      type: 'object',
      properties: {
        year: {
          type: 'number',
          description: 'Yıl',
          minimum: 2000
        },
        month: {
          type: 'number',
          description: 'Ay (1-12)',
          minimum: 1,
          maximum: 12
        }
      },
      required: ['year', 'month']
    }

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