arb_topic_history
Pack: arb-alerts · Endpoint: https://gateway.pipeworx.io/arb-alerts/mcp
Spread history for ONE watched topic — the time-series of every alert that fired for that topic over the past N hours. Use to chart how a specific cross-venue mispricing evolved (e.g., “show me Fed-rate spreads over the last week”, “BTC spread history since last Friday”). Topic must be one of the watched topics — call arb_watchlist to enumerate.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
topic | string | yes | Watchlist topic key like “fed”, “btc”, “cpi”, “gdp”, “sp500”, “recession”, “2028_president”. Lowercase; matches arb_watchlist. |
hours | number | no | Look-back window in hours. Default 72, max 720. |
limit | number | no | Max rows. Default 200, max 1000. |
Example call
Arguments
{
"topic": "fed"
}
curl
curl -X POST https://gateway.pipeworx.io/arb-alerts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"arb_topic_history","arguments":{"topic":"fed"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('arb_topic_history', {
"topic": "fed"
});
More examples
{
"topic": "btc",
"hours": 168
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"arb-alerts": {
"url": "https://gateway.pipeworx.io/arb-alerts/mcp"
}
}
}
See Getting Started for client-specific install steps.