@pipeworx/mcp-ofr-funding 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mojibake Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,134 @@
1
+ # @pipeworx/ofr-funding
2
+
3
+ The Office of Financial Research (US Treasury) Short-Term Funding Monitor API — collateral- and tenor-level US repo market rates/volumes (DVP, GCF, tri-party) and money-market-fund balance-sheet composition, neither of which FRED or the NY Fed Desk's own release carries.
4
+
5
+ Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1679+ live data sources.
6
+
7
+ ## Tools
8
+
9
+ - `ofr_repo_rates(collateral, tenor, measure, vintage, start_date, end_date, limit)` — repo rates or volumes for one collateral segment (dvp/gcf/tri/tri_ex_fed) x tenor (overnight/term bucket/collateral-type split) x measure (rate/volume/outstanding).
10
+ - `ofr_mmf_holdings(category, start_date, end_date, limit)` — monthly money-market-fund investment composition (repo by collateral/counterparty type, outright Treasuries/agencies, bank-related assets).
11
+ - `ofr_search_funding_series(query, dataset, limit)` — name/mnemonic lookup across the full 206-series repo+mmf catalog (OFR has no live search endpoint).
12
+ - `ofr_funding_anomaly(mnemonic OR collateral/tenor/measure/vintage, window_days)` — compares the latest observation to a trailing window and reports delta + z-score, stating the exact window used.
13
+
14
+ ## Auth
15
+
16
+ Keyless. No registration, no API key, no rate-limit headers observed.
17
+
18
+ ## Data sources
19
+
20
+ - `https://data.financialresearch.gov/v1/series/timeseries?mnemonic=...` — the only live per-query route. Returns a bare `[[date, value], ...]` array for one mnemonic. Used by all four tools for every actual data point returned.
21
+ - `https://data.financialresearch.gov/v1/series/dataset?dataset=repo` and `?dataset=mmf` — bulk metadata+data dump (~9MB gzip'd, ~450KB for mmf) used ONCE (2026-09-23) to generate `src/catalog.ts` (mnemonic → human name → start date → frequency). Never called at request time; too large to fetch per call in a Worker, and would be a bulk mirror if it were. The actual VALUES this pack returns always come from the `timeseries` endpoint above, live, per request.
22
+ - `https://www.financialresearch.gov/short-term-funding-monitor/` — the human-facing site these APIs back.
23
+
24
+ ### Traps
25
+
26
+ - **`/v1/series/search`, `/v1/series/metadata`, `/v1/metadata/series`, `/v1/series/datasets` all answer `403 {"message":"Missing Authentication Token"}`.** This is API Gateway's stock response for an undefined route, not an actual auth requirement — there is no public discovery/search endpoint at all. That's why `ofr_search_funding_series` exists as a static, generated lookup table instead of a live search call.
27
+ - **Mnemonic grammar**: `REPO-{COLLATERAL}_{MEASURE}_{TENOR}-{VINTAGE}` for repo, `MMF-{...}-M` for MMF. Not every collateral/tenor/measure combination exists — e.g. DVP has no Treasury/Agency/Corporate collateral-type split, only GCF/TRI do. An invalid combination 400s upstream with body `Invalid mnemonic`; `ofr_repo_rates` surfaces that with a pointer to `ofr_search_funding_series` rather than guessing validity client-side.
28
+ - **Vintage matters**: OFR publishes a `preliminary` value first and a `final` revision a few days later, as a SEPARATE mnemonic suffix (`-P` vs `-F`), not an in-place update. Defaulting to preliminary gets you the freshest number; final is more accurate for anything more than a few days old.
29
+ - **Reporting lag**: the latest repo-rate observation is typically 1-2 calendar days behind today (e.g. probed 2026-09-23, latest tri-party overnight rate was dated 2026-09-21) — this is normal publication lag, not an outage.
30
+ - **`ofr_funding_anomaly`'s z-score is computed by this pack**, not an OFR-published statistic — it excludes the latest point from its own trailing window so the window and the point being judged never overlap.
31
+
32
+ ## Quick Start
33
+
34
+ Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
35
+
36
+ ```json
37
+ {
38
+ "mcpServers": {
39
+ "ofr-funding": {
40
+ "url": "https://gateway.pipeworx.io/ofr-funding/mcp"
41
+ }
42
+ }
43
+ }
44
+ ```
45
+
46
+ ### What this endpoint actually serves
47
+
48
+ `tools/list` at `https://gateway.pipeworx.io/ofr-funding/mcp` returns the tools in the table
49
+ above **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,
50
+ `discover_tools`, `search_within`, `remember`/`recall` and the rest of the
51
+ gateway-wide set. So the tool count you see is larger than this table: a
52
+ single-pack endpoint currently lists roughly 30 shared tools alongside the
53
+ pack's own. The connection's `initialize` response states its exact scope, and
54
+ is the authoritative answer for a given day.
55
+
56
+ This is deliberate, not multiplexing by accident. The meta-tools are what let a
57
+ scoped connection answer a question this pack does not cover — via
58
+ `ask_pipeworx`, which routes across the whole catalog — without you adding a
59
+ second MCP server. There is currently no way to mount a pack endpoint without
60
+ them; if the extra schemas cost you more context than the routing is worth,
61
+ connect to the full gateway once rather than to several pack endpoints.
62
+
63
+ Or connect to the full Pipeworx gateway to get every pack's tools listed
64
+ directly, instead of just this one's:
65
+
66
+ ```json
67
+ {
68
+ "mcpServers": {
69
+ "pipeworx": {
70
+ "url": "https://gateway.pipeworx.io/mcp"
71
+ }
72
+ }
73
+ }
74
+ ```
75
+
76
+ Both URLs reach the same gateway and the same 1679+ data sources. The
77
+ only difference is which pack's tools are listed **directly**; `ask_pipeworx`
78
+ reaches all of them from either one.
79
+
80
+ ## No MCP client? Call it over HTTP
81
+
82
+ ```bash
83
+ curl -X POST https://gateway.pipeworx.io/v1/tools/ofr_repo_rates \
84
+ -H 'Content-Type: application/json' \
85
+ -d '{"collateral":"tri","tenor":"overnight","measure":"rate"}'
86
+ ```
87
+
88
+ No account needed for the first calls. Inspect any tool: `GET https://gateway.pipeworx.io/v1/tools/ofr_repo_rates`. Find one: `POST https://gateway.pipeworx.io/v1/tools/search_packs` with `{"query":"..."}`.
89
+
90
+ ## Standalone (no gateway account)
91
+
92
+ This package also runs as a local stdio MCP server — no Pipeworx account, no
93
+ gateway round-trip:
94
+
95
+ ```json
96
+ {
97
+ "mcpServers": {
98
+ "ofr-funding": {
99
+ "command": "npx",
100
+ "args": ["-y", "@pipeworx/mcp-ofr-funding"]
101
+ }
102
+ }
103
+ }
104
+ ```
105
+
106
+ Or run it directly to confirm it starts:
107
+
108
+ ```bash
109
+ npx -y @pipeworx/mcp-ofr-funding
110
+ ```
111
+
112
+ It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
113
+ for **only** this pack's tools — none of the shared meta-tools the gateway
114
+ connection above adds. Same source, same tools, no ask_pipeworx routing.
115
+
116
+ ## Using with ask_pipeworx
117
+
118
+ Instead of calling tools directly, you can ask questions in plain English —
119
+ this works on the pack endpoint above as well as on the full gateway:
120
+
121
+ ```
122
+ ask_pipeworx({ question: "your question about Ofr Funding data" })
123
+ ```
124
+
125
+ The gateway picks the right tool and fills the arguments automatically.
126
+
127
+ ## More
128
+
129
+ - [Docs and guides](https://pipeworx.io/docs)
130
+ - [pipeworx.io](https://pipeworx.io)
131
+
132
+ ## License
133
+
134
+ MIT
package/bin/cli.js ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env node
2
+ //
3
+ // Entry point for `npx @pipeworx/mcp-<slug>`.
4
+ //
5
+ // Packs ship as raw TypeScript (no build step — see publish-pack.sh for why:
6
+ // tsx sidesteps every extensionless-import / bare-JSON-import edge case a
7
+ // per-pack tsc build would have to solve one pack at a time). This file
8
+ // registers tsx's ESM loader programmatically, then hands off to src/server.ts,
9
+ // which wraps the pack's {tools, callTool} export in a stdio MCP server.
10
+ //
11
+ // Copied verbatim into every published pack repo by scripts/publish-pack.sh —
12
+ // edit this file, not a per-pack copy.
13
+ import { register } from 'tsx/esm/api';
14
+
15
+ register();
16
+
17
+ await import('../src/server.ts');
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@pipeworx/mcp-ofr-funding",
3
+ "version": "0.1.0",
4
+ "description": "OFR Short-Term Funding Monitor API — data.financialresearch.gov/v1, keyless,",
5
+ "type": "module",
6
+ "main": "src/index.ts",
7
+ "types": "src/index.ts",
8
+ "bin": {
9
+ "mcp-ofr-funding": "bin/cli.js"
10
+ },
11
+ "keywords": ["mcp", "mcp-server", "model-context-protocol", "pipeworx", "ofr-funding"],
12
+ "license": "MIT",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/pipeworx-io/mcp-ofr-funding.git"
16
+ },
17
+ "scripts": {
18
+ "typecheck": "tsc --noEmit"
19
+ },
20
+ "dependencies": {
21
+ "@modelcontextprotocol/sdk": "^1.30.0",
22
+ "tsx": "^4.19.0"
23
+ },
24
+ "devDependencies": {
25
+ "typescript": "^5.9.3",
26
+ "@cloudflare/workers-types": "^4.20260405.1"
27
+ },
28
+ "pipeworx": {
29
+ "sourceHash": "v1-0abb695f4d022df588a1ee3fa65c6875f48bf63ee9482a491f4615dfc9742e04",
30
+ "sourceCommit": "b0fb3c31386cf0256dcf1e2f1b3440435a87ec35"
31
+ }
32
+ }
package/server.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.pipeworx-io/ofr-funding",
4
+ "title": "Ofr Funding",
5
+ "description": "OFR Short-Term Funding Monitor API — data.financialresearch.gov/v1, keyless,",
6
+ "version": "0.1.0",
7
+ "websiteUrl": "https://pipeworx.io/packs/ofr-funding",
8
+ "repository": {
9
+ "url": "https://github.com/pipeworx-io/mcp-ofr-funding",
10
+ "source": "github"
11
+ },
12
+ "remotes": [
13
+ {
14
+ "type": "streamable-http",
15
+ "url": "https://gateway.pipeworx.io/ofr-funding/mcp"
16
+ }
17
+ ]
18
+ }
package/src/catalog.ts ADDED
@@ -0,0 +1,226 @@
1
+ // GENERATED from a live pull of data.financialresearch.gov/v1/series/dataset
2
+ // (dataset=repo, dataset=mmf) on 2026-09-23. Metadata only — mnemonic, human
3
+ // name, which dataset, first observation date, frequency. The actual VALUES
4
+ // are never baked in here; ofr_repo_rates/ofr_mmf_holdings always fetch
5
+ // /v1/series/timeseries?mnemonic=... live, per call. This table exists only
6
+ // because data.financialresearch.gov/v1/series/search and /v1/series/metadata
7
+ // both answer 403 "Missing Authentication Token" (no public search route),
8
+ // so discovery has nowhere else to come from. Refresh by re-running
9
+ // scripts/gen-ofr-catalog... against the dataset endpoint if OFR adds/renames series.
10
+ export interface OfrSeriesInfo {
11
+ mnemonic: string;
12
+ name: string;
13
+ dataset: 'repo' | 'mmf';
14
+ start_date: string;
15
+ frequency: string;
16
+ }
17
+
18
+ export const OFR_SERIES_CATALOG: OfrSeriesInfo[] = [
19
+ { mnemonic: 'MMF-MMF_AG_TOT-M', name: 'Money Market Mutual Fund Investments in Federal Agency and GSE Securities', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
20
+ { mnemonic: 'MMF-MMF_BRA_TOT-M', name: 'Money Market Mutual Fund Investments in Bank-Related Assets', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
21
+ { mnemonic: 'MMF-MMF_OA_TOT-M', name: 'Money Market Mutual Fund Investments in Other Assets', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
22
+ { mnemonic: 'MMF-MMF_RP_AG_G30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Term, >30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
23
+ { mnemonic: 'MMF-MMF_RP_AG_LE30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Term, <=30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
24
+ { mnemonic: 'MMF-MMF_RP_AG_OO-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Overnight/Open', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
25
+ { mnemonic: 'MMF-MMF_RP_AG_TOT-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Total', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
26
+ { mnemonic: 'MMF-MMF_RP_G30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements: Term, >30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
27
+ { mnemonic: 'MMF-MMF_RP_LE30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements: Term, <=30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
28
+ { mnemonic: 'MMF-MMF_RP_OA_G30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Term, >30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
29
+ { mnemonic: 'MMF-MMF_RP_OA_LE30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Term, <=30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
30
+ { mnemonic: 'MMF-MMF_RP_OA_OO-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Overnight/Open', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
31
+ { mnemonic: 'MMF-MMF_RP_OA_TOT-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Total', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
32
+ { mnemonic: 'MMF-MMF_RP_OO-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements: Overnight/Open', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
33
+ { mnemonic: 'MMF-MMF_RP_TOT-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
34
+ { mnemonic: 'MMF-MMF_RP_T_G30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Term, >30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
35
+ { mnemonic: 'MMF-MMF_RP_T_LE30-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Term, <=30 Days', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
36
+ { mnemonic: 'MMF-MMF_RP_T_OO-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Overnight/Open', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
37
+ { mnemonic: 'MMF-MMF_RP_T_TOT-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Total', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
38
+ { mnemonic: 'MMF-MMF_RP_wDFI-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements with U.S. Financial Institutions', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
39
+ { mnemonic: 'MMF-MMF_RP_wFFI-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements with Foreign Financial Institutions', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
40
+ { mnemonic: 'MMF-MMF_RP_wFICC-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements Cleared by FICC', dataset: 'mmf', start_date: '2014-03-31', frequency: 'Monthly' },
41
+ { mnemonic: 'MMF-MMF_RP_wFR-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements with the Federal Reserve', dataset: 'mmf', start_date: '2011-03-31', frequency: 'Monthly' },
42
+ { mnemonic: 'MMF-MMF_RP_wOCP-M', name: 'Money Market Mutual Fund Investments in Repurchase Agreements with Other Counterparties', dataset: 'mmf', start_date: '2010-12-31', frequency: 'Monthly' },
43
+ { mnemonic: 'MMF-MMF_TOT-M', name: 'Money Market Mutual Fund Investments: Total', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
44
+ { mnemonic: 'MMF-MMF_T_TOT-M', name: 'Money Market Mutual Fund Investments in U.S. Treasury Securities', dataset: 'mmf', start_date: '2010-11-30', frequency: 'Monthly' },
45
+ { mnemonic: 'MMF-MY_MMF_RP_AG_G30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Term, >30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
46
+ { mnemonic: 'MMF-MY_MMF_RP_AG_LE30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Term, <=30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
47
+ { mnemonic: 'MMF-MY_MMF_RP_AG_OO-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Overnight/Open', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
48
+ { mnemonic: 'MMF-MY_MMF_RP_AG_TOT-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Federal Agency and GSE Securities: Total', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
49
+ { mnemonic: 'MMF-MY_MMF_RP_G30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements: Term, >30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
50
+ { mnemonic: 'MMF-MY_MMF_RP_LE30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements: Term, <=30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
51
+ { mnemonic: 'MMF-MY_MMF_RP_OA_G30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Term, >30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
52
+ { mnemonic: 'MMF-MY_MMF_RP_OA_LE30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Term, <=30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
53
+ { mnemonic: 'MMF-MY_MMF_RP_OA_OO-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Overnight/Open', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
54
+ { mnemonic: 'MMF-MY_MMF_RP_OA_TOT-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by Other Assets: Total', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
55
+ { mnemonic: 'MMF-MY_MMF_RP_OO-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements: Overnight/Open', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
56
+ { mnemonic: 'MMF-MY_MMF_RP_TOT-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements: Total', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
57
+ { mnemonic: 'MMF-MY_MMF_RP_T_G30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Term, >30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
58
+ { mnemonic: 'MMF-MY_MMF_RP_T_LE30-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Term, <=30 Days', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
59
+ { mnemonic: 'MMF-MY_MMF_RP_T_OO-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Overnight/Open', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
60
+ { mnemonic: 'MMF-MY_MMF_RP_T_TOT-M', name: 'Median Yield on Money Market Mutual Fund Investments in Repurchase Agreements Backed by U.S. Treasury Securities: Total', dataset: 'mmf', start_date: '2016-04-30', frequency: 'Monthly' },
61
+ { mnemonic: 'REPO-DVP_AR_B27-F', name: 'DVP Service Average Rate: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
62
+ { mnemonic: 'REPO-DVP_AR_B27-P', name: 'DVP Service Average Rate: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
63
+ { mnemonic: 'REPO-DVP_AR_B830-F', name: 'DVP Service Average Rate: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
64
+ { mnemonic: 'REPO-DVP_AR_B830-P', name: 'DVP Service Average Rate: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
65
+ { mnemonic: 'REPO-DVP_AR_G30-F', name: 'DVP Service Average Rate: Term, >30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
66
+ { mnemonic: 'REPO-DVP_AR_G30-P', name: 'DVP Service Average Rate: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
67
+ { mnemonic: 'REPO-DVP_AR_LE30-F', name: 'DVP Service Average Rate: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
68
+ { mnemonic: 'REPO-DVP_AR_LE30-P', name: 'DVP Service Average Rate: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
69
+ { mnemonic: 'REPO-DVP_AR_OO-F', name: 'DVP Service Average Rate: Overnight/Open (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
70
+ { mnemonic: 'REPO-DVP_AR_OO-P', name: 'DVP Service Average Rate: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
71
+ { mnemonic: 'REPO-DVP_AR_TOT-F', name: 'DVP Service Average Rate: Total (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
72
+ { mnemonic: 'REPO-DVP_AR_TOT-P', name: 'DVP Service Average Rate: Total (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
73
+ { mnemonic: 'REPO-DVP_OV_B27-F', name: 'DVP Service Outstanding Volume: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
74
+ { mnemonic: 'REPO-DVP_OV_B27-P', name: 'DVP Service Outstanding Volume: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
75
+ { mnemonic: 'REPO-DVP_OV_B830-F', name: 'DVP Service Outstanding Volume: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
76
+ { mnemonic: 'REPO-DVP_OV_B830-P', name: 'DVP Service Outstanding Volume: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
77
+ { mnemonic: 'REPO-DVP_OV_G30-F', name: 'DVP Service Outstanding Volume: Term, >30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
78
+ { mnemonic: 'REPO-DVP_OV_G30-P', name: 'DVP Service Outstanding Volume: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
79
+ { mnemonic: 'REPO-DVP_OV_LE30-F', name: 'DVP Service Outstanding Volume: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
80
+ { mnemonic: 'REPO-DVP_OV_LE30-P', name: 'DVP Service Outstanding Volume: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
81
+ { mnemonic: 'REPO-DVP_OV_OO-F', name: 'DVP Service Outstanding Volume: Overnight/Open (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
82
+ { mnemonic: 'REPO-DVP_OV_OO-P', name: 'DVP Service Outstanding Volume: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
83
+ { mnemonic: 'REPO-DVP_OV_TOT-F', name: 'DVP Service Outstanding Volume: Total (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
84
+ { mnemonic: 'REPO-DVP_OV_TOT-P', name: 'DVP Service Outstanding Volume: Total (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
85
+ { mnemonic: 'REPO-DVP_TV_B27-F', name: 'DVP Service Transaction Volume: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
86
+ { mnemonic: 'REPO-DVP_TV_B27-P', name: 'DVP Service Transaction Volume: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
87
+ { mnemonic: 'REPO-DVP_TV_B830-F', name: 'DVP Service Transaction Volume: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
88
+ { mnemonic: 'REPO-DVP_TV_B830-P', name: 'DVP Service Transaction Volume: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
89
+ { mnemonic: 'REPO-DVP_TV_G30-F', name: 'DVP Service Transaction Volume: Term, >30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
90
+ { mnemonic: 'REPO-DVP_TV_G30-P', name: 'DVP Service Transaction Volume: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
91
+ { mnemonic: 'REPO-DVP_TV_LE30-F', name: 'DVP Service Transaction Volume: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
92
+ { mnemonic: 'REPO-DVP_TV_LE30-P', name: 'DVP Service Transaction Volume: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
93
+ { mnemonic: 'REPO-DVP_TV_OO-F', name: 'DVP Service Transaction Volume: Overnight/Open (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
94
+ { mnemonic: 'REPO-DVP_TV_OO-P', name: 'DVP Service Transaction Volume: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
95
+ { mnemonic: 'REPO-DVP_TV_TOT-F', name: 'DVP Service Transaction Volume: Total (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
96
+ { mnemonic: 'REPO-DVP_TV_TOT-P', name: 'DVP Service Transaction Volume: Total (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
97
+ { mnemonic: 'REPO-GCF_AR_AG-F', name: 'GCF Repo Service Average Rate: Federal Agency and GSE Securities (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
98
+ { mnemonic: 'REPO-GCF_AR_AG-P', name: 'GCF Repo Service Average Rate: Federal Agency and GSE Securities (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
99
+ { mnemonic: 'REPO-GCF_AR_B27-F', name: 'GCF Repo Service Average Rate: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
100
+ { mnemonic: 'REPO-GCF_AR_B27-P', name: 'GCF Repo Service Average Rate: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
101
+ { mnemonic: 'REPO-GCF_AR_B830-F', name: 'GCF Repo Service Average Rate: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
102
+ { mnemonic: 'REPO-GCF_AR_B830-P', name: 'GCF Repo Service Average Rate: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
103
+ { mnemonic: 'REPO-GCF_AR_G30-F', name: 'GCF Repo Service Average Rate: Term, >30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
104
+ { mnemonic: 'REPO-GCF_AR_G30-P', name: 'GCF Repo Service Average Rate: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
105
+ { mnemonic: 'REPO-GCF_AR_LE30-F', name: 'GCF Repo Service Average Rate: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
106
+ { mnemonic: 'REPO-GCF_AR_LE30-P', name: 'GCF Repo Service Average Rate: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
107
+ { mnemonic: 'REPO-GCF_AR_OO-F', name: 'GCF Repo Service Average Rate: Overnight/Open (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
108
+ { mnemonic: 'REPO-GCF_AR_OO-P', name: 'GCF Repo Service Average Rate: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
109
+ { mnemonic: 'REPO-GCF_AR_T-F', name: 'GCF Repo Service Average Rate: U.S. Treasury Securities (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
110
+ { mnemonic: 'REPO-GCF_AR_T-P', name: 'GCF Repo Service Average Rate: U.S. Treasury Securities (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
111
+ { mnemonic: 'REPO-GCF_AR_TOT-F', name: 'GCF Repo Service Average Rate: Total (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
112
+ { mnemonic: 'REPO-GCF_AR_TOT-P', name: 'GCF Repo Service Average Rate: Total (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
113
+ { mnemonic: 'REPO-GCF_OV_AG-F', name: 'GCF Repo Service Outstanding Volume: Federal Agency and GSE Securities (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
114
+ { mnemonic: 'REPO-GCF_OV_AG-P', name: 'GCF Repo Service Outstanding Volume: Federal Agency and GSE Securities (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
115
+ { mnemonic: 'REPO-GCF_OV_B27-F', name: 'GCF Repo Service Outstanding Volume: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
116
+ { mnemonic: 'REPO-GCF_OV_B27-P', name: 'GCF Repo Service Outstanding Volume: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
117
+ { mnemonic: 'REPO-GCF_OV_B830-F', name: 'GCF Repo Service Outstanding Volume: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
118
+ { mnemonic: 'REPO-GCF_OV_B830-P', name: 'GCF Repo Service Outstanding Volume: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
119
+ { mnemonic: 'REPO-GCF_OV_G30-F', name: 'GCF Repo Service Outstanding Volume: Term, >30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
120
+ { mnemonic: 'REPO-GCF_OV_G30-P', name: 'GCF Repo Service Outstanding Volume: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
121
+ { mnemonic: 'REPO-GCF_OV_LE30-F', name: 'GCF Repo Service Outstanding Volume: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
122
+ { mnemonic: 'REPO-GCF_OV_LE30-P', name: 'GCF Repo Service Outstanding Volume: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
123
+ { mnemonic: 'REPO-GCF_OV_OO-F', name: 'GCF Repo Service Outstanding Volume: Overnight/Open (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
124
+ { mnemonic: 'REPO-GCF_OV_OO-P', name: 'GCF Repo Service Outstanding Volume: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
125
+ { mnemonic: 'REPO-GCF_OV_T-F', name: 'GCF Repo Service Outstanding Volume: U.S. Treasury Securities (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
126
+ { mnemonic: 'REPO-GCF_OV_T-P', name: 'GCF Repo Service Outstanding Volume: U.S. Treasury Securities (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
127
+ { mnemonic: 'REPO-GCF_OV_TOT-F', name: 'GCF Repo Service Outstanding Volume: Total (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
128
+ { mnemonic: 'REPO-GCF_OV_TOT-P', name: 'GCF Repo Service Outstanding Volume: Total (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
129
+ { mnemonic: 'REPO-GCF_TV_AG-F', name: 'GCF Repo Service Transaction Volume: Federal Agency and GSE Securities (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
130
+ { mnemonic: 'REPO-GCF_TV_AG-P', name: 'GCF Repo Service Transaction Volume: Federal Agency and GSE Securities (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
131
+ { mnemonic: 'REPO-GCF_TV_B27-F', name: 'GCF Repo Service Transaction Volume: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
132
+ { mnemonic: 'REPO-GCF_TV_B27-P', name: 'GCF Repo Service Transaction Volume: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
133
+ { mnemonic: 'REPO-GCF_TV_B830-F', name: 'GCF Repo Service Transaction Volume: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
134
+ { mnemonic: 'REPO-GCF_TV_B830-P', name: 'GCF Repo Service Transaction Volume: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
135
+ { mnemonic: 'REPO-GCF_TV_G30-F', name: 'GCF Repo Service Transaction Volume: Term, >30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
136
+ { mnemonic: 'REPO-GCF_TV_G30-P', name: 'GCF Repo Service Transaction Volume: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
137
+ { mnemonic: 'REPO-GCF_TV_LE30-F', name: 'GCF Repo Service Transaction Volume: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
138
+ { mnemonic: 'REPO-GCF_TV_LE30-P', name: 'GCF Repo Service Transaction Volume: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
139
+ { mnemonic: 'REPO-GCF_TV_OO-F', name: 'GCF Repo Service Transaction Volume: Overnight/Open (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
140
+ { mnemonic: 'REPO-GCF_TV_OO-P', name: 'GCF Repo Service Transaction Volume: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
141
+ { mnemonic: 'REPO-GCF_TV_T-F', name: 'GCF Repo Service Transaction Volume: U.S. Treasury Securities (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
142
+ { mnemonic: 'REPO-GCF_TV_T-P', name: 'GCF Repo Service Transaction Volume: U.S. Treasury Securities (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
143
+ { mnemonic: 'REPO-GCF_TV_TOT-F', name: 'GCF Repo Service Transaction Volume: Total (Final)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
144
+ { mnemonic: 'REPO-GCF_TV_TOT-P', name: 'GCF Repo Service Transaction Volume: Total (Preliminary)', dataset: 'repo', start_date: '2018-05-07', frequency: 'Daily' },
145
+ { mnemonic: 'REPO-TRIV1_AR_AG-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Federal Agency and GSE Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
146
+ { mnemonic: 'REPO-TRIV1_AR_AG-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Federal Agency and GSE Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
147
+ { mnemonic: 'REPO-TRIV1_AR_B27-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
148
+ { mnemonic: 'REPO-TRIV1_AR_B27-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
149
+ { mnemonic: 'REPO-TRIV1_AR_B830-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
150
+ { mnemonic: 'REPO-TRIV1_AR_B830-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
151
+ { mnemonic: 'REPO-TRIV1_AR_CORD-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Corporate Debt (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
152
+ { mnemonic: 'REPO-TRIV1_AR_CORD-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Corporate Debt (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
153
+ { mnemonic: 'REPO-TRIV1_AR_G30-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, >30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
154
+ { mnemonic: 'REPO-TRIV1_AR_G30-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
155
+ { mnemonic: 'REPO-TRIV1_AR_LE30-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
156
+ { mnemonic: 'REPO-TRIV1_AR_LE30-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
157
+ { mnemonic: 'REPO-TRIV1_AR_O-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Other Collateral (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
158
+ { mnemonic: 'REPO-TRIV1_AR_O-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Other Collateral (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
159
+ { mnemonic: 'REPO-TRIV1_AR_OO-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Overnight/Open (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
160
+ { mnemonic: 'REPO-TRIV1_AR_OO-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
161
+ { mnemonic: 'REPO-TRIV1_AR_T-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: U.S. Treasury Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
162
+ { mnemonic: 'REPO-TRIV1_AR_T-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: U.S. Treasury Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
163
+ { mnemonic: 'REPO-TRIV1_AR_TOT-F', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Total (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
164
+ { mnemonic: 'REPO-TRIV1_AR_TOT-P', name: 'Tri-Party Average Rate, excluding Federal Reserve transactions: Total (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
165
+ { mnemonic: 'REPO-TRIV1_TV_AG-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Federal Agency and GSE Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
166
+ { mnemonic: 'REPO-TRIV1_TV_AG-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Federal Agency and GSE Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
167
+ { mnemonic: 'REPO-TRIV1_TV_B27-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
168
+ { mnemonic: 'REPO-TRIV1_TV_B27-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
169
+ { mnemonic: 'REPO-TRIV1_TV_B830-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
170
+ { mnemonic: 'REPO-TRIV1_TV_B830-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
171
+ { mnemonic: 'REPO-TRIV1_TV_CORD-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Corporate Debt (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
172
+ { mnemonic: 'REPO-TRIV1_TV_CORD-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Corporate Debt (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
173
+ { mnemonic: 'REPO-TRIV1_TV_G30-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, >30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
174
+ { mnemonic: 'REPO-TRIV1_TV_G30-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
175
+ { mnemonic: 'REPO-TRIV1_TV_LE30-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
176
+ { mnemonic: 'REPO-TRIV1_TV_LE30-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
177
+ { mnemonic: 'REPO-TRIV1_TV_O-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Other Collateral (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
178
+ { mnemonic: 'REPO-TRIV1_TV_O-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Other Collateral (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
179
+ { mnemonic: 'REPO-TRIV1_TV_OO-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Overnight/Open (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
180
+ { mnemonic: 'REPO-TRIV1_TV_OO-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
181
+ { mnemonic: 'REPO-TRIV1_TV_T-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: U.S. Treasury Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
182
+ { mnemonic: 'REPO-TRIV1_TV_T-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: U.S. Treasury Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
183
+ { mnemonic: 'REPO-TRIV1_TV_TOT-F', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Total (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
184
+ { mnemonic: 'REPO-TRIV1_TV_TOT-P', name: 'Tri-Party Transaction Volume, excluding Federal Reserve transactions: Total (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
185
+ { mnemonic: 'REPO-TRI_AR_AG-F', name: 'Tri-Party Average Rate: Federal Agency and GSE Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
186
+ { mnemonic: 'REPO-TRI_AR_AG-P', name: 'Tri-Party Average Rate: Federal Agency and GSE Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
187
+ { mnemonic: 'REPO-TRI_AR_B27-F', name: 'Tri-Party Average Rate: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
188
+ { mnemonic: 'REPO-TRI_AR_B27-P', name: 'Tri-Party Average Rate: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
189
+ { mnemonic: 'REPO-TRI_AR_B830-F', name: 'Tri-Party Average Rate: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
190
+ { mnemonic: 'REPO-TRI_AR_B830-P', name: 'Tri-Party Average Rate: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
191
+ { mnemonic: 'REPO-TRI_AR_CORD-F', name: 'Tri-Party Average Rate: Corporate Debt (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
192
+ { mnemonic: 'REPO-TRI_AR_CORD-P', name: 'Tri-Party Average Rate: Corporate Debt (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
193
+ { mnemonic: 'REPO-TRI_AR_G30-F', name: 'Tri-Party Average Rate: Term, >30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
194
+ { mnemonic: 'REPO-TRI_AR_G30-P', name: 'Tri-Party Average Rate: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
195
+ { mnemonic: 'REPO-TRI_AR_LE30-F', name: 'Tri-Party Average Rate: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
196
+ { mnemonic: 'REPO-TRI_AR_LE30-P', name: 'Tri-Party Average Rate: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
197
+ { mnemonic: 'REPO-TRI_AR_O-F', name: 'Tri-Party Average Rate: Other Collateral (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
198
+ { mnemonic: 'REPO-TRI_AR_O-P', name: 'Tri-Party Average Rate: Other Collateral (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
199
+ { mnemonic: 'REPO-TRI_AR_OO-F', name: 'Tri-Party Average Rate: Overnight/Open (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
200
+ { mnemonic: 'REPO-TRI_AR_OO-P', name: 'Tri-Party Average Rate: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
201
+ { mnemonic: 'REPO-TRI_AR_T-F', name: 'Tri-Party Average Rate: U.S. Treasury Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
202
+ { mnemonic: 'REPO-TRI_AR_T-P', name: 'Tri-Party Average Rate: U.S. Treasury Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
203
+ { mnemonic: 'REPO-TRI_AR_TOT-F', name: 'Tri-Party Average Rate: Total (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
204
+ { mnemonic: 'REPO-TRI_AR_TOT-P', name: 'Tri-Party Average Rate: Total (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
205
+ { mnemonic: 'REPO-TRI_TV_AG-F', name: 'Tri-Party Transaction Volume: Federal Agency and GSE Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
206
+ { mnemonic: 'REPO-TRI_TV_AG-P', name: 'Tri-Party Transaction Volume: Federal Agency and GSE Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
207
+ { mnemonic: 'REPO-TRI_TV_B27-F', name: 'Tri-Party Transaction Volume: Term, 2 - 7 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
208
+ { mnemonic: 'REPO-TRI_TV_B27-P', name: 'Tri-Party Transaction Volume: Term, 2 - 7 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
209
+ { mnemonic: 'REPO-TRI_TV_B830-F', name: 'Tri-Party Transaction Volume: Term, 8 - 30 Days (Final)', dataset: 'repo', start_date: '', frequency: 'Daily' },
210
+ { mnemonic: 'REPO-TRI_TV_B830-P', name: 'Tri-Party Transaction Volume: Term, 8 - 30 Days (Preliminary)', dataset: 'repo', start_date: '2025-08-15', frequency: 'Daily' },
211
+ { mnemonic: 'REPO-TRI_TV_CORD-F', name: 'Tri-Party Transaction Volume: Corporate Debt (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
212
+ { mnemonic: 'REPO-TRI_TV_CORD-P', name: 'Tri-Party Transaction Volume: Corporate Debt (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
213
+ { mnemonic: 'REPO-TRI_TV_G30-F', name: 'Tri-Party Transaction Volume: Term, >30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
214
+ { mnemonic: 'REPO-TRI_TV_G30-P', name: 'Tri-Party Transaction Volume: Term, >30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
215
+ { mnemonic: 'REPO-TRI_TV_LE30-F', name: 'Tri-Party Transaction Volume: Term, <=30 Days (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
216
+ { mnemonic: 'REPO-TRI_TV_LE30-P', name: 'Tri-Party Transaction Volume: Term, <=30 Days (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
217
+ { mnemonic: 'REPO-TRI_TV_O-F', name: 'Tri-Party Transaction Volume: Other Collateral (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
218
+ { mnemonic: 'REPO-TRI_TV_O-P', name: 'Tri-Party Transaction Volume: Other Collateral (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
219
+ { mnemonic: 'REPO-TRI_TV_OO-F', name: 'Tri-Party Transaction Volume: Overnight/Open (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
220
+ { mnemonic: 'REPO-TRI_TV_OO-P', name: 'Tri-Party Transaction Volume: Overnight/Open (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
221
+ { mnemonic: 'REPO-TRI_TV_T-F', name: 'Tri-Party Transaction Volume: U.S. Treasury Securities (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
222
+ { mnemonic: 'REPO-TRI_TV_T-P', name: 'Tri-Party Transaction Volume: U.S. Treasury Securities (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
223
+ { mnemonic: 'REPO-TRI_TV_TOT-F', name: 'Tri-Party Transaction Volume: Total (Final)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
224
+ { mnemonic: 'REPO-TRI_TV_TOT-P', name: 'Tri-Party Transaction Volume: Total (Preliminary)', dataset: 'repo', start_date: '2014-08-22', frequency: 'Daily' },
225
+ ];
226
+ // total: 206