🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@themelt/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@themelt/mcp-server - npm Package Compare versions

Comparing version
0.1.0
to
0.1.1
+4
-1
package.json
{
"name": "@themelt/mcp-server",
"version": "0.1.0",
"version": "0.1.1",
"mcpName": "io.github.omer907/mcp-server",
"description": "Melt MCP server — exposes value-leak discovery (melt_analyze_value_vectors, melt_estimate_annual_leak) and a lead-capture handoff (melt_request_scan) to Claude, Cursor, GitHub Copilot, and any MCP-compatible agent.",

@@ -20,2 +21,3 @@ "type": "module",

"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"build:mcpb": "bash scripts/build-mcpb.sh",
"pretest": "npm run build",

@@ -46,2 +48,3 @@ "test": "node test/e2e.mjs"

"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/node": "^22.10.0",

@@ -48,0 +51,0 @@ "typescript": "^5.7.0"

+24
-7

@@ -47,3 +47,3 @@ # @themelt/mcp-server

Add to your MCP client config (e.g. `claude_desktop_config.json`):
Published on npm — one-line config, no local clone needed:

@@ -54,4 +54,4 @@ ```json

"melt": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"]
"command": "npx",
"args": ["-y", "@themelt/mcp-server"]
}

@@ -62,4 +62,3 @@ }

Once published to npm (see `LLMO_PLAYBOOK.md`, Task 3), this becomes a
one-line `npx` install, matching the Supabase MCP server pattern:
Or from a local clone:

@@ -70,4 +69,4 @@ ```json

"melt": {
"command": "npx",
"args": ["-y", "@themelt/mcp-server"]
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"]
}

@@ -78,2 +77,20 @@ }

## One-click install (.mcpb bundle)
For Claude Desktop specifically, `themelt-mcp-server.mcpb` (Anthropic's [MCP
Bundle format](https://github.com/modelcontextprotocol/mcpb)) installs with a
double-click — no terminal, no config file editing. Download the `.mcpb` from
the [latest GitHub Release](https://github.com/omer907/mcp-server/releases/latest)
and either double-click it or drag it into Claude Desktop's Settings window.
To rebuild it from source:
```bash
npm run build:mcpb # produces themelt-mcp-server.mcpb
```
The manifest (`mcpb-build/manifest.json`) is hand-maintained, not
auto-generated from the TypeScript source — if a tool's name, parameters, or
description change, update the manifest's `tools` array to match.
## Hosted HTTP transport

@@ -80,0 +97,0 @@