Skip to main content
Glama

初创公司财务指标 (MCP 服务器)

一个用于分析初创公司财务健康状况并本地生成指标报告的 MCP (Model Context Protocol) 服务器。

🔒 隐私与安全至上:

  • 零云风险:此工具 100% 在您的机器/服务器上本地运行。

  • 无外部数据传输:财务数据绝不会发送到任何外部 API、云服务提供商或第三方服务(包括 SlickBooks)。

  • 无数据存储:服务器在内存中处理输入,并将指标直接返回给 MCP 客户端。不会存储、缓存或记录任何数据。

  • 严格只读:此服务器不执行任何财务状态更改。它是一个严格的只读数学引擎。

  • 严格本地处理:在与 Claude Desktop、Cursor、Glama 和其他 MCP 客户端安全集成的同时,保持对敏感财务输入数据的完全主权。

为什么存在此工具

如果您是一位正在筹集资金或准备董事会会议的初创公司创始人,投资者通常会突然要求您提供 MRR(月经常性收入)、烧钱率、毛利率、LTV:CAC(客户终身价值与获客成本比)和跑道(Runway)等指标。大多数创始人要么没有持续跟踪这些数据,要么在每次融资前都要花费数小时从银行对账单和电子表格中提取数字。

此工具可以在几分钟内将您的原始银行对账单(或 Stripe/QBO 导出文件)转换为结构化的财务指标报告,且完全在您自己的机器上完成。无需会计师进行初步筛选。没有敏感数据离开您的计算机。

Related MCP server: plaid-mcp

它能做什么

  1. 摄取数据:接受银行 CSV、Stripe 导出 CSV、QBO/Xero 导出 CSV 或粘贴的值。(为获得最佳效果,请提供至少 3 个月的银行对账单和活跃用户统计数据。示例文件可在 test/ 文件夹中找到)。

  2. AI 交易分类:AI 会根据描述将每笔银行交易分类为收入、COGS(销售成本)、S&M(销售与营销)、工资或 G&A(一般及行政费用)。此步骤由 AI 驱动,可能会出错 —— 例如,将承包商付款错误地归类为工资而非 COGS,或遗漏模糊的明细项。在与投资者分享结果之前,请务必审查分类。

  3. 计算关键指标:计算净烧钱率、跑道、毛利率、CAC、LTV、40 法则等 —— 在一份比较报告中涵盖一个月或多个月的数据。

  4. 严格验证:返回 insufficient_datamissing_inputs 而不是虚构数值。如果数据缺失或模糊,引擎会告诉您需要什么,而不是进行猜测。

  5. 生成报告:创建整洁、格式化的 Markdown 和 HTML 报告 —— 一份涵盖所提供所有月份的统一报告,并带有逐期对比。


mcp-name: io.github.MayankTalwar0/startup-finance-metrics

设置与安装

选项 1:Claude Desktop(非开发人员手动安装)

由于此工具完全在您自己的机器上运行以保护您的财务数据,因此需要一次性的手动设置。 好消息:您不需要安装 Python!下面使用的工具 (uv) 会在后台自动下载它所需的一切。

第 1 步:安装 uv 此服务器使用 uv(一个快速的 Python 管理器)在本地运行。如果您尚未安装:

  • Mac/Linux:打开终端并运行:curl -LsSf https://astral.sh/uv/install.sh | sh

  • Windows:打开 PowerShell 并运行:powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

第 2 步:打开 Claude 的配置

  1. 打开 Claude Desktop 应用程序。

  2. 在左上角菜单中,点击 Claude -> Settings(或 Preferences)。

  3. 点击左侧边栏中的 Developer 选项卡。

  4. 点击 Edit Config 按钮。这将在您的默认文本编辑器中打开一个名为 claude_desktop_config.json 的文件。

第 3 步:添加服务器 将该文件的内容替换为以下代码(如果您已经有其他服务器,只需将 startup-finance-metrics 块添加到现有的 mcpServers 中即可):

{
  "mcpServers": {
    "startup-finance-metrics": {
      "command": "uvx",
      "args": [
        "startup-finance-mcp"
      ]
    }
  }
}

第 4 步:重启 Claude 保存文件,关闭它,并完全重启 Claude Desktop。您现在将在 Claude 聊天中看到一个新的“锤子”(工具)图标!

选项 2:Claude Code、Glama 或自定义 Cursor 设置

对于像 Claude Code 这样的 CLI 代理,或者如果您更喜欢手动配置 Glama 和 Cursor,请使用 uvx 命令:

对于 Claude Code:

claude mcp add startup-finance -- uvx startup-finance-mcp

对于 Glama / Cursor (自定义 MCP 配置):

uvx startup-finance-mcp

选项 3:本地开发

git clone https://github.com/MayankTalwar0/startup-finance-metrics.git
cd startup-finance-metrics
pip install -e .

# Run the server directly
startup-finance-mcp

可用的 MCP 工具

此服务器为 MCP 客户端提供以下工具:

  1. computeFinancialMetrics(inputs_json: str):根据结构化输入计算初创公司财务指标(跑道、毛利率、CAC、LTV 等)。在分析多月数据时,每月调用一次。

  2. generateFinancialReport(metrics_json: str, output_dir: str):渲染统一的 HTML + Markdown 报告。接受单月负载或多月 {"months": [...]} 负载 —— 生成涵盖所提供所有期间的比较报告。

作为独立 AI 技能使用

如果您不想使用完整的 MCP 服务器,只想在 Claude Code 或 OpenClaw 等工具中使用简单的提示词,可以在 skills/SKILL.md 中找到原始技能提示词。

指标参考

#

指标

公式

所需输入

1

净烧钱率

monthly_opex - monthly_revenue

monthly_opex, monthly_revenue

2

跑道

current_cash / net_burn

current_cash; 需要 net_burn > 0 (否则返回 not_applicable: business is cash flow positive)

3

毛利率

(monthly_revenue - cogs) / monthly_revenue * 100

monthly_revenue, cogs

4

CAC

sales_marketing_spend / new_customers

sales_marketing_spend, new_customers

5

LTV

(ARPU * gross_margin) / logo_churn_rate

monthly_revenue, active_customers, lost_customers, cogs

6

LTV:CAC

ltv / cac

可计算的 ltv, 可计算的 cac

7

收入增长

(monthly_revenue - prev_monthly_revenue) / prev_m... * 100

monthly_revenue, prev_monthly_revenue

8

客户流失率

lost_customers / active_customers * 100

lost_customers, active_customers

9

烧钱倍数

net_burn / (arr_end - arr_start)

monthly_opex, monthly_revenue, arr_start, arr_end

10

NRR

(start + exp - churn - cont) / start * 100

starting_mrr, expansion_mrr, churned_mrr, contraction_mrr

11

40 法则

revenue_growth_yoy_pct + operating_margin_pct

revenue_growth_yoy_pct, operating_margin_pct

12

CAC 回本期

cac / (ARPU * gross_margin)

可计算的 cac, monthly_revenue, active_customers, 可计算的 gross_margin

许可证

MIT

由 SlickBooks 构建

SlickBooks 创始人 Mayank 构建。 SlickBooks 提供托管记账、记账自动化、财务预测自动化和定制财务代理服务。

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    An MCP server that reads startup pitch drafts from Notion to provide comprehensive investor-style analysis and scoring. It evaluates key areas like market opportunity and team strength, delivering feedback through a visual dashboard.
  • A
    license
    A
    quality
    D
    maintenance
    A read-only MCP server that enables users to analyze their real bank, credit card, loan, and brokerage data through Plaid. It provides financial analysis tools for transactions, balances, investments, liabilities, and debt while keeping all access tokens and data locally stored.
    24
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    MCP server for analyzing SEC filings (10-K, 10-Q, 8-K) with industry-aware financial extraction and BERT-based NLP.
    1
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    An MCP server that provides deterministic finance tools for SEC filing analysis, enabling LLMs to compute financial ratios, fetch filings, and perform equity research without hallucinated numbers.
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.

  • Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.

  • MCP server for generating rough-draft project plans from natural-language prompts.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MayankTalwar0/startup-finance-metrics'

If you have feedback or need assistance with the MCP directory API, please join our Discord server