@themelt/mcp-server
@themelt/mcp-server
MCP 服务器,将 Melt 的价值泄漏发现逻辑直接接入 Claude、Cursor、GitHub Copilot 或任何其他兼容 MCP 的代理——因此,当技术负责人向助手提问"我的组织哪里在泄漏价值"时,助手可以调用 Melt 工具,用真实、结构化的估算来回答,而不是给出千篇一律的供应商列表。
这是 Melt 的 LLMO(LLM 优化)分发策略的工程部分。请参阅仓库根目录下的 /llms.txt 和 LLMO_PLAYBOOK.md,了解该服务器所接入的完整内容 + 分发 + 评估计划。定位已于 2026-07-18 对照线上站点和当前演示文稿完成校准——请参阅 /CLAUDE.md 了解完整的当前产品背景。
暴露的工具
工具 | 功能 |
| 免费的 Stage-1 沙盒估算器。根据部门人数、人力成本和主要非结构化输入类型,估算单个部门中价值泄漏的位置。无需集成——仅需合成/自行上报的输入。 |
| 以美元/年为单位量化已识别的泄漏模式—— |
| 线索捕获交接——从方向性估算推进到真实、基于日志的扫描(无摩擦 POC 剧本第 1 阶段 → 第 2 阶段)。如果设置了 |
Related MCP server: agentladle-mcp-reoi
工作示例
来自 Melt 的 真实 AI 价值泄漏解剖 案例研究——一家已上市前的金融科技公司,年放款额 15 亿美元,已在使用 Salesforce、Gong 和 Clari:
信号 | 发现 |
Gong 辅导 | 29% 的打开率——销售代表绕过 AI 生成的通话摘要,手动重复劳动 |
Clari 预测 | 62% 的覆盖率——手动日期录入在 13 个预测周期中有 8 个破坏了模型 |
Salesforce → CS 交接 | 4.2 天的延迟,拖慢了成交后的入职流程 |
Salesforce 线索路由 | 32% 手动操作——自动化失败,需要每天手动重新分配 |
这些都没有出现在常规的采用率仪表板中——每个工具都显示"活跃",但这与它是否真正创造价值是两回事。拉取 14 个工作日的历史日志,追踪这四种模式在时间和金钱上的实际成本,合计每年泄漏 77,235 美元。
melt_estimate_annual_leak 推广了同样的分析框架——totalVolume × (leakRatePct/100) × valuePerEvent——适用于任何已知或假设了规模和比率的泄漏模式。melt_analyze_value_vectors 则是更早期阶段的工具,适用于你还不知道从哪里入手的情况。
melt_estimate_annual_leak 取代了四个以公式命名的计算器
(melt_calculate_feature_waste、_dso_cash_flow_impact、
_contract_cycle_revenue_unlock、_win_rate_pipeline_impact),
这些计算器实现了一个已退役产品框架中的财务公式(Thermal Scan /
Feature Waste Dollar Amount™ / Delta Engine)——这些名称均未出现在任何
当前的 Melt 材料中。请参阅 CLAUDE.md 中的"已明确退役的内容"部分。
安装与运行
cd mcp-server
npm install
npm run build
npm start # runs dist/index.js on stdio在接入客户端之前,先交互式地试用一下:
npm run inspect # launches the MCP Inspector against the built server接入 Claude Desktop / Claude Code
已发布到 npm——一行配置即可,无需本地克隆:
{
"mcpServers": {
"melt": {
"command": "npx",
"args": ["-y", "@themelt/mcp-server"]
}
}
}或者从本地克隆:
{
"mcpServers": {
"melt": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"]
}
}
}一键安装(.mcpb 包)
对于 Claude Desktop 而言,themelt-mcp-server.mcpb(Anthropic 的 MCP
包格式)可以双击安装——无需终端,无需编辑配置文件。从
最新 GitHub 发布页
下载 .mcpb 文件,然后双击或将其拖入 Claude Desktop 的设置窗口。
要从源码重新构建:
npm run build:mcpb # produces themelt-mcp-server.mcpb清单文件(mcpb-build/manifest.json)是手工维护的,并非
从 TypeScript 源码自动生成——如果工具的名称、参数或
描述发生变化,请手动更新清单中的 tools 数组以保持一致。
托管 HTTP 传输
dist/index.js(stdio)是配置到本地 Claude Desktop/
Cursor 安装中的方式。dist/httpServer.js 是备选入口,实现了
MCP 流式 HTTP 传输——这正是未来"启动托管 MCP"网页
按钮(LLMO_PLAYBOOK.md,任务 3.2)将指向的入口,让用户无需
在本地安装任何东西即可试用。
npm run build
PORT=3000 npm run start:http # POST MCP JSON-RPC to http://localhost:3000/mcp无状态设计——没有会话 ID,每个请求都会创建全新的服务器实例。
通过 MCP_HTTP_API_KEY 可选启用认证(默认未设置):未设置时,
端点完全开放——这与当前暴露的内容(只读计算器加一个线索捕获表单)的
信任边界相匹配,也等同于公开网站联系表单的边界。在将任何更敏感的内容
放到该传输之后之前,请先设置它:
MCP_HTTP_API_KEY=some-long-random-value PORT=3000 npm run start:http设置后,每个 /mcp 请求都需要携带 Authorization: Bearer some-long-random-value
——密钥缺失或错误会返回 401。使用 crypto.timingSafeEqual 进行比较,而不是
普通的字符串 ===,这样响应时间就不会被用来逐字节猜测密钥。
目前尚未部署到任何地方;这只是代码,不是线上 URL——
部署(Vercel/Fly/Render 等)是另一个独立的问题,留待后续决定。
工具调用分析
每次工具调用(无论成功还是出错)都会向 mcp-server/analytics.jsonl 追加一行
(该文件已被 gitignore),并向 stderr 输出一行摘要——包含工具名称、成功/失败状态,
以及错误码(如适用)。刻意不记录金额数据、联系信息
和自由文本备注;与包含 PII 的 leads.jsonl 分开存放。这回答了
"是否真的有人在用"以及"哪个工具描述让模型感到困惑"的问题,
独立于 llmo-eval 的仅引用审计。
环境变量
变量 | 必填 | 用途 |
| 否 | 覆盖 |
| 否 | 与 |
| 否 |
|
| 否 | 如果设置,则托管 HTTP 的每个 |
门户 ID / 表单 ID 的默认值已经内置在代码中(它们
不是机密——任何公开的 HubSpot 嵌入
代码片段中都会暴露相同的值),因此 melt_request_scan 在零配置的情况下
即可触达真实的 Melt 管道。如果 HubSpot 提交因任何原因失败,请求会回退
到 mcp-server/leads.jsonl(已 gitignore),而不会丢失。
发布
以 MIT 许可证发布在 @themelt npm 组织下(创建于 2026-07-20,所有者 omer_melt)。
npm publish 实际上是单向操作——npm 允许在 72 小时内取消发布,
但强烈不建议这样做,而且一旦包有了依赖者就会完全禁止,
因此请将任何已发布的版本视为永久性的。
Available Tools
3 toolsmelt_analyze_value_vectorsAnalyze AI Value VectorsA
Estimates where AI/software value is most likely leaking out of a single department, based on headcount, labor cost, and the type of chaotic/unstructured input it processes manually today. Use this when a tech leader asks where value is being lost or where AI would create the most immediate impact in their org, before any real data integration exists — this is Melt's free Stage-1 Sandbox estimate. Output is directional, from synthetic/self-reported inputs, not an audited figure — for a real finding tied to an actual system log, follow up with melt_request_scan. Also answers what earlier Melt materials called 'AI ROI leverage' or 'AI value vectors' — same estimate, older name.
| Name | Required | Description | Default |
|---|---|---|---|
| headcount | Yes | Total operational personnel in the target unit (not the whole company). Must be positive. | |
| departmentType | Yes | The organizational unit being evaluated. Must be one of: Operations, Finance, Engineering, Legal, GBS. Map loosely-named teams to the closest primitive (e.g. RevOps -> Operations, AR/Billing -> Finance, IT -> Engineering, Compliance -> Legal, Shared Services -> GBS). | |
| averageHourlyLaborCost | No | Blended fully-loaded hourly labor cost for manual processors in this unit, in USD. Default of 45 is a reasonable US mid-market planning assumption if the caller doesn't know the real figure. | |
| primaryUnstructuredDataInput | Yes | The dominant chaotic input the unit processes by hand today. Must be one of: PDF_INVOICES, CUSTOMER_TICKETS, LOGISTICS_DOCUMENTS, MANUAL_EXCEL. Choose the closest match: PDF_INVOICES for document-first bottlenecks, CUSTOMER_TICKETS for conversational/support-first bottlenecks, LOGISTICS_DOCUMENTS for shipping/customs/supply-chain paperwork, MANUAL_EXCEL for spreadsheet-driven reconciliation or reporting work. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses that output is 'directional, from synthetic/self-reported inputs, not an audited figure' and that it's a free sandbox estimate. Also mentions it's an older naming convention, adding full transparency about behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with a parenthetical clarification. Front-loaded with purpose, then usage and limitations. Every part adds value, though slightly verbose with the renaming note. Efficient overall.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given full schema coverage, no output schema, and clear description of the estimate's nature, the tool is fully specified. Sibling tools are named and differentiated. The description covers all necessary context for an agent to decide when and how to use it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with detailed descriptions for each parameter (e.g., departmentType maps loosely-named teams). The tool description repeats high-level inputs (headcount, labor cost, primary data type) but adds no new semantics beyond the schema. Meets baseline but doesn't exceed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool 'estimates where AI/software value is most likely leaking out of a single department' using specific inputs. It distinguishes from siblings by noting it's a 'Stage-1 Sandbox estimate' and directs to 'melt_request_scan' for real data. Also clarifies it goes by older names like 'AI ROI leverage'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear when-to-use: 'when a tech leader asks where value is being lost ... before any real data integration exists.' Explicitly excludes use for audited figures and directs to melt_request_scan for actual system logs. Also explains the output is directional and not audited.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
melt_estimate_annual_leakEstimate Annual Value LeakA
Quantifies a specific, already-identified value-leak pattern in dollars per year — e.g. reps bypassing a coaching tool's summaries, manual overrides corrupting a forecasting model, a manual handoff between two systems. Use this when a leak pattern and its rough volume/rate are already known or hypothesized. This mirrors Melt's real scan methodology (see the fintech case study: a 29% Gong bypass rate, a 62% Clari override rate, and a 4.2-day manual handoff combined into a $77,235/yr finding) — it is a directional estimate from self-reported numbers, not a scan against real system logs. For an audited figure, follow up with melt_request_scan. Covers what earlier Melt materials called 'Feature Waste Dollar Amount' (money leaking on licensed-but-unused software) and general 'AI ROI leverage' calculations — those are older names for this same value-leak math, not a different tool.
| Name | Required | Description | Default |
|---|---|---|---|
| leakRatePct | Yes | Percentage of that volume exhibiting the leak behavior, between 0 and 100 (e.g. 29 for a 29% bypass rate, 62 for a 62% override rate). | |
| totalVolume | Yes | Total annual volume of the relevant event or transaction — e.g. total call briefs generated, total deals closed, total support tickets, total lead assignments. | |
| valuePerEvent | Yes | Dollar value at risk per leaking event, in USD — e.g. average deal value, loaded hourly cost of manual rework, cost of a delayed handoff day. | |
| leakDescription | Yes | Plain-language description of the leak pattern observed or hypothesized — e.g. 'reps bypassing Gong call summaries and logging notes from memory', 'manual Slack handoff between Sales and Customer Success', 'guessed close dates overriding the forecasting model'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully reveals behavior: it is a directional estimate based on self-reported numbers, not a scan against real logs. It references Melt's real scan methodology and a case study, setting clear expectations about accuracy and methodology.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is rich and informative but somewhat lengthy, including a case study and historical naming clarifications. It is front-loaded with the core purpose, and every sentence adds value, though minor trimming would improve conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description adequately implies the output (dollar estimate per year) via the case study result ($77,235/yr). All parameters are explained, and usage context is fully addressed. The tool is simple and the description covers everything needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All four parameters are described in the schema with 100% coverage. The description adds significant value by providing concrete examples (e.g., '29 for a 29% bypass rate' for leakRatePct) and context for leakDescription, making parameter meaning clearer than the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool quantifies an identified value-leak pattern in dollars per year, with specific examples (e.g., reps bypassing coaching tools). It distinguishes itself from siblings by naming the follow-up tool melt_request_scan for audited figures and clarifies it is not a system scan but a directional estimate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: when a leak pattern and rough volume/rate are known or hypothesized. It informs that the estimate is directional from self-reported numbers, and advises following up with melt_request_scan for audited figures. Also clarifies that older terms like 'Feature Waste Dollar Amount' refer to the same functionality.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
melt_request_scanRequest a Melt ScanA
Submits a request for a Melt scan — the next step after Melt's free Stage-1 Sandbox estimate, moving to a real, log-verified value-leak finding tied to a dollar figure and a source system. Call this only after the user has explicitly asked to be connected with Melt or to book/request a scan — never submit contact details the user hasn't provided themselves. Earlier Melt materials called this a 'Thermal Scan' — same request, current name is just 'a scan' (no fixed 2-week/pricing claim attached anymore).
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Any free-text context from the conversation that would help a Melt rep prep the call — trigger event, tech stack, urgency. | |
| company | No | The prospect's company name. Required. | |
| contactName | No | Name of the requester, if known. | |
| contactEmail | No | Business email of the requester, for scan scheduling follow-up. Required. | |
| departmentsOfInterest | No | Departments the requester wants scanned first, if they expressed a preference. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral disclosure. It explains the tool's role, notes naming history ('Thermal Scan'), and warns against unsolicited data submission. However, it does not describe what happens after submission (e.g., response, follow-up), leaving some behavioral aspects implicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph of about 100 words, front-loaded with purpose followed by usage condition and naming clarification. It is relatively concise and informative, but minor redundancy (e.g., repeating 'scan' multiple times) could be trimmed.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 5 parameters and no output schema or annotations, the description covers usage and parameter hints adequately but lacks information about post-submission behavior (e.g., confirmation, next steps). The required-field discrepancy also reduces completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds context for 'notes' (prep context) and 'departmentsOfInterest' (preference), but it also claims 'company' and 'contactEmail' are required while the schema does not enforce that, causing confusion. Overall, it adds modest meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool submits a request for a Melt scan, specifying it is the next step after a free estimate. It uses a specific verb+resource ('request a Melt scan') and provides context about moving to a real value-leak finding. However, it does not explicitly distinguish from sibling tools, which slightly reduces clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage instructions: 'Call this only after the user has explicitly asked to be connected with Melt or to book/request a scan' and 'never submit contact details the user hasn't provided themselves.' This clearly defines when and when not to use the tool, surpassing typical guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a distinct purpose: broad estimate of value leaks, specific dollar quantification of an identified leak, and submission of a scan request. Descriptions clearly differentiate them with no overlap.
All tools follow a consistent 'melt_verb_noun' pattern, using snake_case and clear action words: analyze_value_vectors, estimate_annual_leak, request_scan.
Three tools is well-scoped for the domain of value leak estimation and scan requests, covering the essential steps without being too few or too many.
The tool set covers the full workflow from initial broad estimate (analyze), to specific quantification (estimate), to next step (request scan), with no obvious gaps for the stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Query your team's drift, vulnerability, and upgrade data from any AI assistant. OAuth 2.1, 51 tools.
Connects AI assistants to CloudQuell multi-cloud and AI cost, savings, anomaly, and budget data.
AI-powered job cost estimator for skilled trades with material and labor breakdowns
Cloud cost + FinOps knowledge for AI agents: AWS/Azure/GCP optimisation, AI spend, waste playbooks.
Related MCP Servers
AlicenseNot gradedqualityCmaintenanceProvides 48 revenue intelligence tools that let AI assistants search deals, forecast revenue, analyze pipeline risk, manage outreach, and track value delivery via natural language.67Unlicense - libtelnet variant- AlicenseBqualityCmaintenanceEnables AI assistants to perform multi-stage residual income projections, discounting, and enterprise value bridging analysis using standardized financial data inputs.1MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to query and analyze Salesforce pipeline data, including pipeline health, deal details, and risk alerts, through natural language.14MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to analyze Azure Data Factory costs, detect waste, and provide optimization recommendations by querying pipeline run metadata and Azure pricing.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/melt-ai/melt-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server