ecb_hicp_inflation

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

Harmonised Index of Consumer Prices (HICP) annual rate of change for a country / euro area. Monthly frequency. country defaults to U2 (euro area).

Parameters

NameTypeRequiredDescription
countrystringnoReference area — U2 (euro area, default), DE, FR, IT, ES, NL, BE, etc.
start_periodstringnoStart date (YYYY or YYYY-MM)
end_periodstringnoEnd date (YYYY or YYYY-MM)

Example call

Arguments

{
  "country": "U2"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ecb_hicp_inflation', {
  "country": "U2"
});

More examples

{
  "country": "DE",
  "start_period": "2023-01",
  "end_period": "2024-01"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026