nyfed_reference_rates
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_reference_rates for the schema, then POST the same URL with its arguments for the data.
The Desk’s own reference-rate publications: SOFR, SOFRAI (30/90/180-day compounded averages + index), EFFR (effective fed funds), OBFR (overnight bank funding), TGCR/BGCR (tri-party general collateral rates). rate_type=all (default) returns the latest value of every rate in one call; a specific rate_type with number>1 returns that rate’s recent history including percentile bands and traded volume — detail fred_get_series(‘SOFR’) etc. does not carry (FRED has only the single daily value, no percentiles/volume).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
rate_type | string | no | Default all. |
number | number | no | History length when rate_type is not “all”. Default 1 (latest only), max 100. |
Example call
Arguments
{
"rate_type": "all"
}
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_reference_rates","arguments":{"rate_type":"all"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nyfed_reference_rates', {
"rate_type": "all"
});
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.