Sec Nmfp

live Markets

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

3 tools
0ms auth
free tier 50 calls/day

Tools

nmfp_security_holders

Which US money market funds hold paper from a given issuer, from SEC Form N-MFP monthly portfolio filings — the reverse of a fund fact sheet, which makes you name the fund first. Give an issuer name (

No parameters required.

Try it
nmfp_fund_holdings

The portfolio a US money market fund reported to the SEC on Form N-MFP for one month: every security it held, with issuer, title, investment category (Treasury debt, government agency debt, repurchase

No parameters required.

Try it
nmfp_periods

Which SEC Form N-MFP monthly reporting periods are published, newest first, with the date range each covers. Money market funds file monthly and SEC posts a period a few days after it closes. Use this

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/sec-nmfp/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/sec-nmfp/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"nmfp_security_holders","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("nmfp_security_holders", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("sec form n-mfp — money market fund portfolio holdings");