get_series
Pack: boe-uk · Endpoint: https://gateway.pipeworx.io/boe-uk/mcp
Fetch one or more Bank of England IADB series by code over a date range. Requires BoE series codes
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
series_codes | array | yes | BoE series codes, e.g. [“IUDBEDR”,“IUDSOIA”]. Also accepts a single comma-separated string. |
items | string | no | |
from | string | yes | Start date “DD/Mon/YYYY” (e.g. “01/Jan/2024”) or ISO “YYYY-MM-DD”. |
to | string | no | End date “DD/Mon/YYYY”, ISO “YYYY-MM-DD”, or “now” (default “now”). |
Example call
Arguments
{
"series_codes": [
"IUDBEDR"
],
"from": "2024-01-01"
}
curl
curl -X POST https://gateway.pipeworx.io/boe-uk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_series","arguments":{"series_codes":["IUDBEDR"],"from":"2024-01-01"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_series', {
"series_codes": [
"IUDBEDR"
],
"from": "2024-01-01"
});
More examples
{
"series_codes": [
"IUDSOIA",
"XUDLUSS"
],
"from": "01/Jan/2024",
"to": "2024-12-31"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"boe-uk": {
"url": "https://gateway.pipeworx.io/boe-uk/mcp"
}
}
}
See Getting Started for client-specific install steps.