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
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Yıl | |
| month | Yes | Ay (1-12) |
Implementation Reference
- src/tools.ts:541-542 (handler)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'] } }
- src/tools.ts:453-469 (schema)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'] }