Skip to main content
ClaudeWave

SEC Form N-MFP — money market fund portfolio holdings.

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/17/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-sec-nmfp
Claude Code CLI
claude mcp add mcp-sec-nmfp -- npx -y @pipeworx/mcp-sec-nmfp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-sec-nmfp": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-sec-nmfp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# @pipeworx/sec-nmfp

US money market fund portfolio holdings, from SEC Form N-MFP. Keyless.

Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1576+ live data sources.

## Tools

- `nmfp_security_holders(issuer, period?, limit?)` — which money market funds hold a given issuer's paper. Accepts an issuer name fragment or a CUSIP.
- `nmfp_fund_holdings(fund, period?, limit?)` — one fund's reported portfolio for a month, with a per-category position count.
- `nmfp_periods()` — which monthly reporting periods SEC has published (currently 50) and the date range each covers.

## The inversion is the point of this pack

SEC publishes N-MFP **filing-first**: one filing per fund per month, portfolio inside. So "what does
this fund hold" is the natural question and *"which funds hold this issuer's paper"* is not — that one
requires reading every filing in the period. `nmfp_security_holders` does exactly that on each call,
which is the reason to have the pack at all. When a bank or an issuer wobbles, the question people
ask is who is exposed, and there is no filing that answers it.

Measured on the 2026-07-09→2026-08-07 period: 341 fund filings, 47,129 holdings. `Federal Home Loan
Bank` alone appears in **129 funds across 6,489 positions**.

## Reading traps, surfaced in the responses

- **Positions are counts, not dollars.** N-MFP position value is not carried here, so
  `positions_by_category` says how many holdings sit in each category, not how much money does. A
  fund running many small repo positions against one large Treasury block reads repo-heavy by count
  and may not be by value. Both tools say this in `reading_note`.
- **Only money market funds file N-MFP.** A bond or equity fund will never appear, however large.
  The `found: false` path says that rather than implying the fund holds nothing.
- **Issuer names are as the fund typed them** — `FEDERAL HOME LOAN BANK SYSTEM`, not a normalized
  entity. Matching is substring, and the miss path tells the caller to shorten the fragment rather
  than concluding no fund holds it.

## Shape

One ZIP per monthly period, ~11.9MB, carrying 23 TSVs. Three are read: `NMFP_SUBMISSION` (the fund
and its filing), `NMFP_SERIESLEVELINFO`, `NMFP_SCHPORTFOLIOSECURITIES` (the holdings). The rest are
skipped — including `NMFP_COLLATERALISSUERS`, which is 55MB raw on its own, five times the whole
rest of the archive, and answers no question asked here.

Read live per call rather than kept in a mirror: one period is one fetch, and a money-market question
is nearly always about the latest month.

Two file-format notes worth keeping, because both have cost time in this codebase:

- Sizes come from the ZIP **central directory**, not local headers. SEC sets the data-descriptor flag
  on some datasets, which zeroes the local-header sizes; a reader that trusts them extracts nothing.
- The filenames encode a **date range** (`20260709-20260807_nmfp.zip`) that is not derivable — the
  windows do not align to calendar months and shift each cycle. This is the fourth SEC dataset here
  with its own path convention, so the index page is read and the URL is never constructed.

## Cadence

Money market funds file monthly; SEC posts a period a few days after it closes.

## Source

SEC Form N-MFP data sets — https://www.sec.gov/data-research/sec-markets-data/dera-form-n-mfp-data-sets

## Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

```json
{
  "mcpServers": {
    "sec-nmfp": {
      "url": "https://gateway.pipeworx.io/sec-nmfp/mcp"
    }
  }
}
```

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/sec-nmfp/mcp` returns the tools in the table
above **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,
`discover_tools`, `search_within`, `remember`/`recall` and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's `initialize` response states its exact scope, and
is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
`ask_pipeworx`, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed
directly, instead of just this one's:

```json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
```

Both URLs reach the same gateway and the same 1576+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.

## Standalone (no gateway account)

This package also runs as a local stdio MCP server — no Pipeworx account, no
gateway round-trip:

```json
{
  "mcpServers": {
    "sec-nmfp": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-sec-nmfp"]
    }
  }
}
```

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-sec-nmfp
```

It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
for **only** this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.

## Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English —
this works on the pack endpoint above as well as on the full gateway:

```
ask_pipeworx({ question: "your question about Sec Nmfp data" })
```

The gateway picks the right tool and fills the arguments automatically.

## More

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
mcpmcp-servermodel-context-protocolpipeworxsec-nmfp

What people ask about mcp-sec-nmfp

What is pipeworx-io/mcp-sec-nmfp?

+

pipeworx-io/mcp-sec-nmfp is mcp servers for the Claude AI ecosystem. SEC Form N-MFP — money market fund portfolio holdings. It has 0 GitHub stars and its last recorded update is dated 2026-09-16.

How do I install mcp-sec-nmfp?

+

You can install mcp-sec-nmfp by cloning the repository (https://github.com/pipeworx-io/mcp-sec-nmfp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-sec-nmfp safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-sec-nmfp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains pipeworx-io/mcp-sec-nmfp?

+

pipeworx-io/mcp-sec-nmfp is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-16, with 0 open issues.

Are there alternatives to mcp-sec-nmfp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-sec-nmfp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-sec-nmfp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-sec-nmfp)](https://claudewave.com/repo/pipeworx-io-mcp-sec-nmfp)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-sec-nmfp"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-sec-nmfp" alt="Featured on ClaudeWave: pipeworx-io/mcp-sec-nmfp" width="320" height="64" /></a>

More MCP Servers

mcp-sec-nmfp alternatives