ofr_search_funding_series
Pack: ofr-funding · Endpoint: https://gateway.pipeworx.io/ofr-funding/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ofr_search_funding_series for the schema, then POST the same URL with its arguments for the data.
Browse the full catalog of OFR repo-market and money-market-fund mnemonics by name (e.g. “tri-party”, “GCF”, “corporate debt”, “federal reserve”) — use this to find the exact series behind ofr_repo_rates/ofr_mmf_holdings, or a raw mnemonic to pass to ofr_funding_anomaly. OFR publishes no live search API, so this is a name/mnemonic lookup table, not a live call.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Substring to match against the series name or mnemonic (case-insensitive). Omit to list everything in the chosen dataset. |
dataset | string | no | Default all. |
limit | number | no | Default 30, max 206 (the full catalog). |
Example call
Arguments
{
"query": "tri-party"
}
curl
curl -X POST https://gateway.pipeworx.io/ofr-funding/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ofr_search_funding_series","arguments":{"query":"tri-party"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ofr_search_funding_series', {
"query": "tri-party"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ofr-funding": {
"url": "https://gateway.pipeworx.io/ofr-funding/mcp"
}
}
}
See Getting Started for client-specific install steps.