sonia
Pack: boe-uk · Endpoint: https://gateway.pipeworx.io/boe-uk/mcp
Latest N observations of SONIA, the Sterling Overnight Index Average (series IUDSOIA), most recent first.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
last | number | no | Number of most-recent observations (default 10). |
Example call
Arguments
{
"last": 5
}
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":"sonia","arguments":{"last":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sonia', {
"last": 5
});
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.