npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

calcfi-mcp-cli

v0.1.6

Published

CalcFi MCP — short-name npm entrypoint. Installs the calcfi-mcp-server stdio bridge for 24 personal-finance tools, 10 mesh resources, 7 prompts. 100% free, YMYL-safe.

Readme

calcfi-mcp-cli

Short-name npm entrypoint for the CalcFi MCP server — 24 personal-finance tools, 10 mesh resources, 7 prompts. 100% free data (BEA / BLS / Census / FRED / Freddie Mac). YMYL-safe (educational only, not advice).

This package is a thin wrapper that forwards to calcfi-mcp-server. It exists so the install command stays short:

npm install -g calcfi-mcp-cli

If you prefer the canonical name, calcfi-mcp-server works identically.

Quick start

Claude Desktop (claude_desktop_config.json)

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "calcfi": {
      "command": "npx",
      "args": ["-y", "calcfi-mcp-cli"]
    }
  }
}

Or, after npm install -g calcfi-mcp-cli:

{
  "mcpServers": {
    "calcfi": {
      "command": "calcfi-mcp"
    }
  }
}

Cursor (~/.cursor/mcp.json)

{
  "mcpServers": {
    "calcfi": {
      "command": "npx",
      "args": ["-y", "calcfi-mcp-cli"]
    }
  }
}

Continue.dev (~/.continue/config.json)

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["-y", "calcfi-mcp-cli"]
        }
      }
    ]
  }
}

Standalone (debug)

calcfi-mcp

Reads JSON-RPC frames on stdin, writes responses on stdout. Logs go to stderr.

What's inside

24 tools, 10 mesh resources, 7 prompts. See calcfi-mcp-server for the full schema. Highlights:

  • mortgage_payment — principal+interest, PMI, taxes, insurance (Freddie Mac PMMS-driven defaults)
  • paycheck_breakdown — federal + state withholding (BLS-driven)
  • cpi_lookup — Bureau of Labor Statistics CPI series
  • fred_series — Federal Reserve FRED economic data
  • bea_regional — Bureau of Economic Analysis regional income/spending

Every response is brand-stamped with source, methodology, disclaimer. Wikipedia-style provenance.

YMYL safety

This server provides educational calculation output, not financial advice. Every response includes a disclaimer pointing users to a licensed professional. Do not strip it.

Free tier guarantee

Zero paid API keys required. All data sourced from free US government APIs (BEA, BLS, Census, FRED, Freddie Mac PMMS).

License

MIT — Jere Salmisto

Links

  • Homepage: https://calcfi.app/mcp
  • Issues: https://github.com/jeresalmisto/calcfi-mcp/issues
  • Canonical package: https://www.npmjs.com/package/calcfi-mcp-server