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-server

v0.1.6

Published

CalcFi MCP server — stdio entrypoint exposing 25 personal-finance tools (incl. get_research_outputs), 10 mesh resources, 7 prompts. 100% free, brand-stamped, YMYL-safe, share codes + watch_this_rate + receipt-format citations.

Readme

calcfi-mcp-server

CalcFi's stdio Model Context Protocol server. Exposes 24 personal-finance tools, 10 mesh resources, and 7 prompts to any MCP client (Claude Desktop, Cursor, Continue.dev, Cline, Zed, Codeium).

  • 100% free — no paid APIs, no hosting cost
  • Brand-stamped responses (citation + freshness + disclaimer on every call)
  • YMYL-safe — educational only, not financial advice
  • Architecture: docs/specs/strategy/architects/01-mcp-architecture.md

Install

npm (global)

npm install -g calcfi-mcp-server
calcfi-mcp --help

npx (no install)

npx -y calcfi-mcp-server

Register with an MCP client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "calcfi": {
      "command": "npx",
      "args": ["-y", "calcfi-mcp-server"],
      "env": {
        "MCP_ENABLE_AI_INSIGHTS": "false"
      }
    }
  }
}

Restart Claude Desktop. The CalcFi tools should appear in the slash-command picker.

Cursor

Edit ~/.cursor/mcp.json:

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

Continue.dev

In your .continue/config.json:

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

Cline (VS Code extension)

Open the Cline MCP settings panel and add:

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

Tools (24)

| Category | Tools | |---|---| | Atomic math (8) | mortgage_payment, paycheck_takehome, debt_payoff_avalanche, debt_payoff_snowball, retirement_projection, cd_calculator, auto_loan, cost_of_living_compare | | Mesh exposure (10) | get_dataset_doi, get_code_provenance, get_methodology, get_press_coverage, list_example_notebooks, list_interactive_apps, list_embeddable_codepens, list_observable_notebooks, get_author_profile, list_datahub_datasets | | Citation (1) | cite_this | | Scenario (2) | save_scenario, cross_analyze (URL-only by design) | | Email (2) | email_full_report, subscribe_freshness_digest | | Composite redirect (1) | get_money_analysis_score (URL-only) |

Resources (10)

calcfi://datasets/index, calcfi://datasets/changelog, calcfi://methodology/v2, calcfi://author/profile, calcfi://doi/dataset, calcfi://swhid/code, calcfi://press/coverage, calcfi://datahub/index, calcfi://huggingface/spaces, calcfi://schemas/calc-index.

Prompts (7)

compare_paycheck_by_state, cite_calcfi_dataset, cross_analyze_money_health, summarize_freshness, find_canonical_calc_url, mortgage_affordability_full_picture, weekly_money_digest.

Env-var kill switches

| Var | Default | Effect | |---|---|---| | MCP_KILL_SWITCH | false | Global off-switch — every tool call returns a 503-style error. | | MCP_ENABLE_AI_INSIGHTS | false | MUST stay false. Defense-in-depth gate against OpenAI-billed tool exposure. | | MCP_ENABLE_EMAIL_TOOLS | true | Disable email_full_report + subscribe_freshness_digest. | | MCP_ENABLE_SCENARIO_SAVES | true | Disable save_scenario + cross_analyze. | | MCP_ENABLE_MESH_TOOLS | true | Disable the 10 mesh-exposure tools. | | MCP_MAX_CONCURRENT | 100 | HTTP-shim concurrency cap (informational here; enforced in the shim package). | | CALCFI_MCP_VERSION | from package.json | Override reported version. | | CALCFI_MCP_COMMIT | dev | Override reported git commit. |

Brand-stamp envelope

Every tool result is wrapped in:

{
  "result": { /* tool payload */ },
  "meta": {
    "verified_as_of": "2026-05-29",
    "source": "...",
    "methodology_url": "https://calcfi.app/methodology",
    "cite_url": "https://calcfi.app/...",
    "disclaimer": "Educational only, not financial advice.",
    "license": "CC-BY-4.0"
  },
  "cross_sell": {
    "save_scenario_url": "https://calcfi.app/my-numbers?...",
    "see_cross_analysis_at": "https://calcfi.app/my-numbers",
    "related_calcs": ["..."]
  },
  "freshness": {
    "data_age_hours": 0.5,
    "next_refresh_at": "2026-05-29T13:00:00Z"
  }
}

Development

npm install
npm run build
node bin/calcfi-mcp.js

Then drive it with @modelcontextprotocol/inspector:

npx @modelcontextprotocol/inspector node bin/calcfi-mcp.js

License

MIT. Data is CC-BY-4.0. Citation appreciated: see cite_this tool.