money

money

An MCP server that enables AI assistants to match users with capital providers for business loans, real estate, and asset tokenization through a conversational intake process.

Category
访问服务器

README

/money — AI Capital Matching by Freedman Capital Group

Need capital? Install this plugin and let your AI find it for you. Describe your deal — business loan, commercial real estate, residential mortgage, or asset tokenization — and get matched to the right capital provider through Freedman Capital Group's private network. No forms. No portals. Just a conversation with your AI.

Works with Claude Code, any MCP-compatible AI client, or as a standalone agentic AI tool.


What This Does

/money turns your AI assistant into a capital intake specialist. It:

  1. Identifies what kind of capital you need (business loan, commercial RE, residential, tokenization)
  2. Interviews you conversationally — no forms, no portals
  3. Scans your deal folder automatically if you have documents (purchase agreements, rent rolls, financials)
  4. Handles disclosures and compliance (TRID-safe for residential, securities notices for tokenization)
  5. Submits your deal to FCG's matching engine
  6. Tracks your submission status

All matching, routing, and lender intelligence stays server-side. Your AI never sees the lender database.


Products Supported

Product What It Covers Timeline
Unsecured Business Capital Lines of credit, term loans, MCAs, revenue-based financing. No collateral. 24–72 hours
Commercial Real Estate Debt Acquisition, refinance, bridge, construction, rehab. Multifamily 5+, office, retail, industrial. 3–7 business days
Residential Debt DSCR, fix-and-flip, bridge, rental portfolio, home purchase, refinance. Investor and owner-occupied. 1–3 business days
Asset Tokenization Tokenize real estate, precious metals, invoices, debt instruments into digital securities. Raise capital or borrow against tokenized positions. Powered by Zoniqx. 3–5 business days

Quick Start

Prerequisites

Install

npx money install

This does three things:

  1. Opens your browser for a quick email signup (no password, magic link)
  2. Installs the /money skill into Claude Code
  3. Registers the MCP server so Claude can talk to FCG's backend

Verify

npx money status

You should see:

  Skill:      installed
  Auth:       you@email.com
  MCP Server: registered

Use It

Open Claude Code in any project and type:

/money

That's it. Claude will walk you through the intake.


How the Interview Works

The intake is conversational, not a form. Claude will:

  1. Ask what you're looking for (or detect it from your files)
  2. Gather the minimum required fields for your product type
  3. Present legally required disclosures (verbatim from the server)
  4. Submit your deal to the matching engine
  5. Give you a reference number and expected timeline

For Residential Deals (TRID Compliance)

Residential intake is range-based only — this is a matching service, not a credit application. Claude will never ask for:

  • Your SSN
  • Exact property address (city/state only)
  • Exact income, property value, or loan amount (ranges only)

This keeps the intake TRID-safe (no Loan Estimate obligation triggered).

For Tokenization Deals

Claude will ask about:

  • Asset type (real estate, precious metals, invoices, debt)
  • Your tokenization goal (raise capital, increase liquidity, borrow against)
  • Ownership structure and compliance readiness
  • Estimated value range and timeline

A licensed tokenization provider reviews your submission and proposes a structure.


Deal Folder Scanning

If you run /money in a directory that contains deal files, Claude will automatically detect them and offer to review. This saves time — Claude extracts deal parameters from your documents instead of asking you to type everything.

What It Looks For

Real estate files:

  • Purchase agreements, contracts, PSAs
  • Listings, MLS sheets
  • Appraisals, BPOs
  • Rent rolls
  • Operating statements, T12s, P&Ls
  • Inspection reports
  • Insurance, title, survey docs

Business files:

  • Bank statements
  • Tax returns (1040, 1065, 1120)
  • Financial statements, balance sheets
  • Business plans, pro formas
  • Entity docs (operating agreements, articles)

Communication:

  • Emails from brokers/lenders (.eml, .msg files)

How to Organize Your Deal Folder

For best results, put your deal files in one folder and run /money from there:

my-deal/
  purchase-agreement.pdf
  rent-roll-2025.xlsx
  operating-statement-t12.pdf
  inspection-report.pdf
  bank-statements/
    jan-2025.pdf
    feb-2025.pdf
    mar-2025.pdf

Then:

cd my-deal
claude
# type: /money

Claude will say something like: "I see what looks like a deal folder — there's a purchase agreement, rent roll, and some bank statements. Want me to review these to get a read on your deal?"

Privacy

  • Claude never reads your files without explicit permission
  • Document summaries are sent to the server — never raw PII
  • For residential deals, exact addresses and values are converted to ranges before transmission
  • SSNs, account numbers, and personal identifiers are always stripped

For Agentic AI / Autonomous Agents

This plugin exposes a standard MCP (Model Context Protocol) server. Any AI agent that speaks MCP can use it — not just Claude Code.

MCP Tools Available

Tool Purpose Input
get_product_types List available product categories (none)
create_intake_session Start a new intake session productType, contactEmail, contactName
upload_document Attach document summary to session sessionId, documentType, summary
get_required_disclosures Get required legal disclosures productType, state
submit_lead Submit completed intake sessionId, intake (structured data)
check_status Check status of a submitted request referenceId or email

Getting Your API Token

Run the installer once — it signs you up via email (magic link, no password) and saves your token locally:

npx money install

Your token is saved to ~/.claude-money/config.json. To view it:

cat ~/.claude-money/config.json

Running the MCP Server Directly

# Set your API token (from the config file above)
export CLAUDE_MONEY_API_KEY=your-token-here

# Start the MCP server (stdio transport)
node src/mcp-server/index.js

Connecting from Other MCP Clients

Add to your MCP client configuration:

{
  "mcpServers": {
    "money": {
      "command": "node",
      "args": ["/path/to/money/src/mcp-server/index.js"],
      "env": {
        "CLAUDE_MONEY_API_KEY": "your-token-from-config"
      }
    }
  }
}

Agentic Workflow Example

An autonomous agent can run the full intake without human interaction:

1. Call get_product_types → identify the right product
2. Call create_intake_session → get a sessionId
3. Call upload_document (for each doc) → attach summaries
4. Call get_required_disclosures → get disclosure text
5. Present disclosures to the user and get acknowledgment
6. Call submit_lead → submit the complete intake
7. Call check_status → monitor progress

Important: Disclosures must be presented to a human and acknowledged before submission. Autonomous agents cannot skip this step.


Project Structure

money/
  bin/
    claude-money.js        # CLI installer (npx money install/uninstall/status)
  src/
    mcp-server/
      index.js             # MCP server — exposes tools via stdio
      api-client.js        # HTTP client for FCG backend (handles auth + refresh)
  skills/
    money.md               # /money skill definition — the conversation layer
  package.json
  README.md

What Each Piece Does

  • skills/money.md — The brain. This is the system prompt that tells Claude how to conduct the intake interview, what to ask, what not to ask, how to handle compliance, and what tone to use. It's the skill definition that gets installed into ~/.claude/skills/.

  • src/mcp-server/index.js — The transport. An MCP server that exposes six tools (listed above). Claude calls these tools to interact with FCG's backend API. Runs as a subprocess managed by Claude Code.

  • src/mcp-server/api-client.js — The HTTP client. Handles authentication, token refresh, and all API calls to api.freedmancapitalgroup.com. You never interact with this directly.

  • bin/claude-money.js — The installer. Handles the browser-based signup flow, copies the skill file, and registers the MCP server with Claude Code.


Commands

Command What It Does
npx money install Sign up + install skill + register MCP server
npx money uninstall Remove everything (skill, MCP server, config)
npx money status Check what's installed and your auth status
npx money help Show available commands

Environment Variables

Variable Required Description
CLAUDE_MONEY_API_KEY No Override auth token (for dev/testing or headless agents)
CLAUDE_MONEY_API_URL No Override backend URL (defaults to https://api.freedmancapitalgroup.com)

FAQ

Who is this for? Anyone who needs capital — business owners, real estate investors, property owners looking to tokenize, homebuyers. If you use Claude Code or any AI assistant, this plugin lets your AI do the legwork of finding the right lender.

Is this a loan application? No. This is a matching service. We collect enough information to route your deal to the right capital provider. A licensed lender handles the formal application if you choose to move forward.

Does it pull my credit? No. No credit report is pulled during intake. Ever.

What does it cost? Free for borrowers. Freedman Capital Group earns a fee from the capital provider when deals close.

Can I use this without Claude Code? Yes. The MCP server works with any MCP-compatible client. You can also run it programmatically for agent workflows.

Is my data safe? Document summaries are transmitted — never raw files. For residential deals, all values are converted to ranges. SSNs, account numbers, and exact addresses are never collected or transmitted.


For Lenders & Capital Providers

If you're a lender, investor, or tokenization provider and want to receive matched leads through this network:

Join the FCG Provider Network

Set your criteria, sign a comp agreement, and start receiving pre-screened leads that match your programs.


Support


Freedman Capital Group, LLC. NMLS information available upon request. This tool is for matching purposes only and does not constitute an offer to lend. Asset tokenization services provided through licensed third-party providers. Digital securities offerings are made only to qualified investors.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选