claudemesh-cli 0.8.5 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +6 -5
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -47674,6 +47674,7 @@ var TOOLS = [
|
|
|
47674
47674
|
file_id: { type: "string", description: "File ID of uploaded zip (from share_file)" },
|
|
47675
47675
|
git_url: { type: "string", description: "Git repo URL" },
|
|
47676
47676
|
git_branch: { type: "string", description: "Branch to clone (default: main)" },
|
|
47677
|
+
npx_package: { type: "string", description: "npm package name to run via npx (e.g. @upstash/context7-mcp)" },
|
|
47677
47678
|
env: { type: "object", description: "Environment variables. Use $vault:<key> for vault secrets." },
|
|
47678
47679
|
runtime: { type: "string", enum: ["node", "python", "bun"], description: "Runtime (auto-detected if omitted)" },
|
|
47679
47680
|
memory_mb: { type: "number", description: "Memory limit in MB (default: 256)" },
|
|
@@ -51071,15 +51072,15 @@ ${lines.join(`
|
|
|
51071
51072
|
return text(ok ? `Vault entry "${key}" deleted.` : `Vault entry "${key}" not found.`);
|
|
51072
51073
|
}
|
|
51073
51074
|
case "mesh_mcp_deploy": {
|
|
51074
|
-
const { server_name, file_id, git_url, git_branch, env: deployEnv, runtime, memory_mb, network_allow, scope } = args ?? {};
|
|
51075
|
+
const { server_name, file_id, git_url, git_branch, npx_package, env: deployEnv, runtime, memory_mb, network_allow, scope } = args ?? {};
|
|
51075
51076
|
if (!server_name)
|
|
51076
51077
|
return text("mesh_mcp_deploy: `server_name` required", true);
|
|
51077
|
-
if (!file_id && !git_url)
|
|
51078
|
-
return text("mesh_mcp_deploy:
|
|
51078
|
+
if (!file_id && !git_url && !npx_package)
|
|
51079
|
+
return text("mesh_mcp_deploy: one of `file_id`, `git_url`, or `npx_package` required", true);
|
|
51079
51080
|
const client2 = allClients()[0];
|
|
51080
51081
|
if (!client2)
|
|
51081
51082
|
return text("mesh_mcp_deploy: not connected", true);
|
|
51082
|
-
const source = file_id ? { type: "zip", file_id } : { type: "git", url: git_url, branch: git_branch };
|
|
51083
|
+
const source = npx_package ? { type: "npx", package: npx_package } : file_id ? { type: "zip", file_id } : { type: "git", url: git_url, branch: git_branch };
|
|
51083
51084
|
const resolvedEnv = {};
|
|
51084
51085
|
const vaultResolved = [];
|
|
51085
51086
|
if (deployEnv) {
|
|
@@ -52603,7 +52604,7 @@ init_config();
|
|
|
52603
52604
|
// package.json
|
|
52604
52605
|
var package_default = {
|
|
52605
52606
|
name: "claudemesh-cli",
|
|
52606
|
-
version: "0.8.
|
|
52607
|
+
version: "0.8.6",
|
|
52607
52608
|
description: "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
|
|
52608
52609
|
keywords: [
|
|
52609
52610
|
"claude-code",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudemesh-cli",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.6",
|
|
4
4
|
"description": "Claude Code MCP client for claudemesh — peer mesh messaging between Claude sessions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"prettier": "3.6.2",
|
|
49
49
|
"typescript": "5.9.3",
|
|
50
50
|
"vitest": "4.0.14",
|
|
51
|
+
"@turbostarter/vitest-config": "0.1.0",
|
|
51
52
|
"@turbostarter/tsconfig": "0.1.0",
|
|
52
53
|
"@turbostarter/eslint-config": "0.1.0",
|
|
53
|
-
"@turbostarter/prettier-config": "0.1.0"
|
|
54
|
-
"@turbostarter/vitest-config": "0.1.0"
|
|
54
|
+
"@turbostarter/prettier-config": "0.1.0"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"build": "bun build src/index.ts --target=node --outfile dist/index.js --banner \"#!/usr/bin/env node\" && chmod +x dist/index.js",
|