Bank of England
live FinanceDataBank of England Interactive Statistical Database (IADB) MCP.
Tools
get_series Fetch one or more Bank of England IADB series by code over a date range. Requires BoE series codes
No parameters required.
Try it
bank_rate Latest N observations of the Bank of England official Bank Rate (series IUDBEDR), most recent first.
No parameters required.
Try it
sonia Latest N observations of SONIA, the Sterling Overnight Index Average (series IUDSOIA), most recent first.
No parameters required.
Try it
usd_gbp Latest N observations of the USD/GBP spot rate — US$ per £1 (series XUDLUSS), most recent first.
No parameters required.
Try it
eur_gbp Latest N observations of the EUR/GBP spot rate — € per £1 (series XUDLERS), most recent first.
No parameters required.
Try it
list_known_series List the friendly BoE series codes this pack surfaces (Bank Rate, SONIA, USD/GBP, EUR/GBP) with their IADB codes.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/boe-uk/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/boe-uk/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_series","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_series", {}); // Or ask in plain English:
const answer = await px.ask("bank of england interactive statistical database (iadb) mcp");