ecb_get_data

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

Generic SDMX data fetch from any ECB flow. Key is dot-separated dimension values; empty positions are wildcards. Example: flow_ref=“EXR”, key=“D.USD.EUR.SP00.A” (daily USD/EUR spot).

Parameters

NameTypeRequiredDescription
flow_refstringyesFlow reference — EXR (exchange rates), ICP (HICP), BSI, IRS, STS, BLS, MIR, …
keystringyesSeries key, dot-separated dimension values
start_periodstringnoStart date / period
end_periodstringnoEnd date / period
last_nnumbernoReturn only the last N observations

Example call

Arguments

{
  "flow_ref": "EXR",
  "key": "D.USD.EUR.SP00.A"
}

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_get_data","arguments":{"flow_ref":"EXR","key":"D.USD.EUR.SP00.A"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ecb_get_data', {
  "flow_ref": "EXR",
  "key": "D.USD.EUR.SP00.A"
});

More examples

{
  "flow_ref": "ICP",
  "key": "M.DE.....CP00",
  "start_period": "2023-01",
  "last_n": 12
}

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