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

refinancier-mcp

v0.0.7

Published

MCP client for refinancier — Trust Infrastructure for Uncertain Assets. Enterprise valuation, anomaly detection, and value-up recommendations for AI agents.

Readme

refinancier-mcp

MCP client for refinancier — Trust Infrastructure for Uncertain Assets Decision-grade enterprise valuation, causal inference, and value-up recommendations for AI agents.

Status MCP License

English | 日本語 README


🚧 Under Development

This package is the client-side MCP wrapper for refinancier-banks. It exposes refinancier's decision-intelligence APIs (enterprise valuation, anomaly detection, value-up recommendations, causal inference, XAI audit trails) to AI agents via the Model Context Protocol.

Current status: 6 tools live (Decision Intelligence + Compliance + Valuation + Causal DAG). Coming Q3 2026 for self-serve usage.

⚠️ Important: some Quick endpoints are unauthenticated demo-only. For the full toolset (30+ tools, with auth), use the Python MCP shipped inside refinancier-banks directly.

For early access, see refinancier-banks.com or contact [email protected].


Why refinancier-mcp?

| Capability | What it does | |------------|--------------| | Enterprise valuation | Multi-method (PER/PSR/DCF/Asset) + intangible asset premium + 100% reproducible | | Anomaly timeline | 10-year financial + EDINET + TDB + news fused into one timeline (4 anomaly types) | | Scenario simulation | What-if + counterfactual reasoning via Do-calculus | | Value-up recommendations | Investment committee one-pager: top issues, value drivers, do/wait/dont actions | | XAI audit trail | SHA-256 hash chain + Neo4j; AI decisions are fully replayable and tamper-proof |

Designed for Japanese regional banks, M&A intermediaries, PE funds, and strategy departments of operating companies — anywhere uncertainty must be translated into auditable decisions.


Quick Start

Claude Desktop / Claude Code

Add to your MCP configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "refinancier": {
      "command": "npx",
      "args": ["-y", "refinancier-mcp"],
      "env": {
        "REFINANCIER_API_KEY": "rfn_live_your_api_key"
      }
    }
  }
}

Note for nvm users: if your PATH prioritizes an older Node.js (< v14) over a newer one, specify the absolute path:

"command": "/Users/YOUR_NAME/.nvm/versions/node/v22.x.x/bin/npx",
"env": {
  "PATH": "/Users/YOUR_NAME/.nvm/versions/node/v22.x.x/bin:/usr/local/bin:/usr/bin:/bin",
  "REFINANCIER_API_KEY": "rfn_live_..."
}

From Source

git clone https://github.com/rascal-3/refinancier-mcp.git
cd refinancier-mcp
npm install
npm start

API Keys

API keys (rfn_live_*) are issued via the refinancier admin console (currently private beta). Contact [email protected] for early access.


Tools (planned)

| Tool | Description | |------|-------------| | valuate_company | Multi-method enterprise valuation with reproducibility guarantee | | get_anomaly_timeline | Detect financial / governance / execution / strategic anomalies over time | | run_scenario | What-if scenario simulation (optimistic / base / pessimistic) | | get_recommended_actions | Value-up recommendations with do / wait / dont classification | | build_causal_dag | Generate causal DAG explaining enterprise value drivers | | check_compliance | Compliance Copilot: regulation-aware risk assessment |

Pricing announced at GA.


Architecture

┌─────────────────────────────────────────────┐
│         AI Agent (Claude / GPT / ...)       │
└─────────────────────┬───────────────────────┘
                      │ MCP (stdio)
┌─────────────────────▼───────────────────────┐
│   refinancier-mcp (this package)            │
│   - MCP protocol handler                    │
│   - API key auth                            │
│   - Tool definitions                        │
└─────────────────────┬───────────────────────┘
                      │ HTTPS (REST)
┌─────────────────────▼───────────────────────┐
│   refinancier-banks.com (backend)           │
│   - Causal AI + XAI                         │
│   - PostgreSQL + Neo4j Aura                 │
│   - Azure OpenAI GPT-5.4                    │
│   - SHA-256 audit trail                     │
└─────────────────────────────────────────────┘

The client-side wrapper is intentionally thin: it translates MCP tool calls into HTTPS requests against the refinancier API. All heavy lifting (causal inference, evaluation, audit trail) happens server-side, behind FISC-compliant security controls.

This mirrors the design of our sibling product chainanalyzer-mcp, which exposes multi-chain AML scoring as MCP tools backed by chain-analyzer.com.


License

MIT. Server-side data and AI models are proprietary to refinancier.


Contact