nyfed_seclending_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_seclending_operations for the schema, then POST the same URL with its arguments for the data.
NY Fed Desk securities lending operation results — how much of the SOMA portfolio was lent out today (or in a date range), by operation (seclending = the daily program, extensions = extended-term lending). Returns total par amount submitted/accepted and, when cusips is given, per-security detail. Use for “how active is securities lending today”, “was CUSIP X lent out this week”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
operation | string | no | Default seclending. |
start_date | string | no | YYYY-MM-DD, inclusive. |
end_date | string | no | YYYY-MM-DD, inclusive. |
cusips | string | no | Comma-separated CUSIP(s) to filter to (partial match). |
limit | number | no | Default 20, max 100. |
Example call
Arguments
{}
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_seclending_operations","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nyfed_seclending_operations', {});
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.