nyfed_repo_operations
Pack: nyfed-markets · Endpoint: https://gateway.pipeworx.io/nyfed-markets/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/nyfed_repo_operations for the schema, then POST the same URL with its arguments for the data.
NY Fed Desk repo and reverse repo (ON RRP) operation RESULTS — the actual auctions the Desk ran, not a daily rate aggregate. Each operation: total submitted/accepted USD, counterparty counts, award rate(s), breakdown by security type (Treasury/Agency/MBS/SRF). No start_date/end_date -> today’s operation(s) only (empty on weekends/holidays). With start_date/end_date -> a date-range search. Use for “today’s ON RRP usage”, “reverse repo take-up this week vs last”, “who’s using the SRF”. Different from fred_get_series(‘RRPONTSYD’) which only has the daily accepted total, no per-operation detail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
operation_type | string | no | repo = Desk lends cash (RP); reverserepo = Desk borrows cash (ON RRP). Default all. |
start_date | string | no | YYYY-MM-DD, inclusive. Triggers a date-range search instead of “latest”. |
end_date | string | no | YYYY-MM-DD, inclusive. |
term | string | no | Filter to overnight-only or term operations. |
limit | number | no | Max operations to return, newest first. Default 20, max 100. |
Example call
Arguments
{
"operation_type": "reverserepo"
}
curl
curl -X POST https://gateway.pipeworx.io/nyfed-markets/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nyfed_repo_operations","arguments":{"operation_type":"reverserepo"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nyfed_repo_operations', {
"operation_type": "reverserepo"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nyfed-markets": {
"url": "https://gateway.pipeworx.io/nyfed-markets/mcp"
}
}
}
See Getting Started for client-specific install steps.