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.
Maintainers
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.
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 startAPI 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
- Product: refinancier-banks.com
- Email: [email protected]
- Sibling product: chainanalyzer-mcp
