boj_inflation

Pack: boj · Endpoint: https://gateway.pipeworx.io/boj/mcp

Japan’s consumer price inflation (CPI, all items) — the metric the Bank of Japan targets at 2%. Returns the latest year-on-year inflation rate (%), the latest CPI index level, their month, and recent monthly history. Use for ‘Japan inflation rate’ / ‘Japan CPI’ / ‘is Japan hitting the BOJ 2% target’ questions. Sourced from IMF IFS (keyless).

Parameters

NameTypeRequiredDescription
monthsnumbernoHow many recent months of history to return (default 12).

Example call

Arguments

{
  "months": 12
}

curl

curl -X POST https://gateway.pipeworx.io/boj/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"boj_inflation","arguments":{"months":12}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('boj_inflation', {
  "months": 12
});

More examples

{
  "months": 24
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "boj": {
      "url": "https://gateway.pipeworx.io/boj/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 19, 2026