# Inflation Calculator — MCP tool `findutils:inflation_calculator`

Return what an amount of money from one year is worth in another year using historical CPI data, with total inflation, average yearly inflation, and the change in purchasing power (all in percent). USD covers 1913-2025 (BLS); TRY covers 2003-2025 (TÜİK).

- Category: finance
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/inflation-calculator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/inflation-calculator/
- Same tool on the other surface: https://findutils.com/api/inflation-calculator/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "inflation_calculator",
      "arguments": {
        "amount": 100,
        "from_year": 2000,
        "to_year": 2025,
        "currency": "USD"
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `amount` | number | yes | Amount of money in the from_year. |
| `from_year` | integer | yes | Start year. |
| `to_year` | integer | yes | End year. May be earlier than from_year. |
| `currency` | string (USD \| TRY) | no | CPI series: USD or TRY. Default: USD. |

Example arguments (verified):

```json
{
  "amount": 100,
  "from_year": 2000,
  "to_year": 2025,
  "currency": "USD"
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/inflation-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 100,
    "from_year": 2000,
    "to_year": 2025,
    "currency": "USD"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/inflation-calculator
```

Full REST reference: https://findutils.com/api/inflation-calculator/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
