get_series
Pack: bundesbank-de · Endpoint: https://gateway.pipeworx.io/bundesbank-de/mcp
Pull observations for a Bundesbank series as SDMX-JSON.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
flowRef | string | yes | Dataflow id, e.g. “BBEX3”. |
key | string | yes | Dot-separated SDMX dimension filter, e.g. “D.USD.EUR.BB.AC.000”. Empty segments wildcard a dimension. |
lastNObservations | number | no | Return only the most recent N observations. |
startPeriod | string | no | Inclusive start period (YYYY, YYYY-MM, or YYYY-MM-DD). |
endPeriod | string | no | Inclusive end period (YYYY, YYYY-MM, or YYYY-MM-DD). |
detail | string | no | SDMX detail level: “full” (default), “dataonly”, “serieskeysonly”, or “nodata”. |
Example call
Arguments
{
"flowRef": "BBEX3",
"key": "D.USD.EUR.BB.AC.000",
"lastNObservations": 10
}
curl
curl -X POST https://gateway.pipeworx.io/bundesbank-de/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_series","arguments":{"flowRef":"BBEX3","key":"D.USD.EUR.BB.AC.000","lastNObservations":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_series', {
"flowRef": "BBEX3",
"key": "D.USD.EUR.BB.AC.000",
"lastNObservations": 10
});
More examples
{
"flowRef": "BBSIS",
"key": "M..EUR.DE.A.R....",
"startPeriod": "2020-01-01",
"endPeriod": "2023-12-31"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bundesbank-de": {
"url": "https://gateway.pipeworx.io/bundesbank-de/mcp"
}
}
}
See Getting Started for client-specific install steps.