@zibby/mcp-cli 0.3.8 → 0.3.10

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.
Files changed (4) hide show
  1. package/LICENSE +4 -20
  2. package/README.md +2 -1
  3. package/index.js +11 -10
  4. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,21 +1,5 @@
1
- MIT License
1
+ Copyright (c) 2026 Zibby Labs. All rights reserved.
2
2
 
3
- Copyright (c) 2026 Zibby
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
3
+ Proprietary and confidential. Unauthorized copying, distribution, or use of
4
+ this software, in whole or in part, via any medium, is strictly prohibited
5
+ without the express prior written permission of Zibby Labs.
package/README.md CHANGED
@@ -182,4 +182,5 @@ node -p "require('@zibby/cli/package.json').version" # bundled CLI version (af
182
182
 
183
183
  ## License
184
184
 
185
- MIT
185
+ Proprietary — Copyright (c) 2026 Zibby Labs. All rights reserved.
186
+ Unauthorized copying, distribution, or use is prohibited.
package/index.js CHANGED
@@ -202,16 +202,17 @@ const server = new McpServer({
202
202
  version: '0.3.0',
203
203
  });
204
204
 
205
- // ── Dual-register helper (product-noun migration: "workflow" → "agent") ──
206
- // The product UI now calls deployed automations "Agents". We expose every
207
- // workflow-related tool under BOTH its historical `*_workflow*` name AND a
208
- // new `*_agent*` name, pointing at the SAME schema + handler. Old names keep
209
- // working (additive alias, never removed); the agent-named ones are the new
210
- // primary. Internal CLI verbs / API routes / package names are untouched
211
- // only the MCP-facing tool name + description prose change.
212
- function toolWithAlias(canonicalName, aliasName, description, schema, handler) {
213
- server.tool(canonicalName, description, schema, handler);
214
- server.tool(aliasName, description, schema, handler);
205
+ // ── Agent-named tool registration (product-noun migration: "workflow" → "agent") ──
206
+ // The product UI now calls deployed automations "Agents". Unlike the CLI —
207
+ // where `agent` is an additive ALIAS and `workflow` stays for muscle memory /
208
+ // scripts MCP tool names are LLM-facing and surfaced wholesale via
209
+ // tools/list. Registering both `*_workflow*` and `*_agent*` would put 6 exact
210
+ // duplicate pairs in front of the model, cluttering the list and muddying tool
211
+ // selection. So MCP exposes ONLY the agent-named tool. The legacy `*_workflow*`
212
+ // name (first arg) is kept in the call signature for traceability but is no
213
+ // longer registered. Internal CLI verbs / API routes / package names unchanged.
214
+ function toolWithAlias(_legacyWorkflowName, agentName, description, schema, handler) {
215
+ server.tool(agentName, description, schema, handler);
215
216
  }
216
217
 
217
218
  // ── Tool: login ─────────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zibby/mcp-cli",
3
- "version": "0.3.8",
3
+ "version": "0.3.10",
4
4
  "description": "Zibby local-essential MCP Server — local workflow scaffold/validate/run + deploy/download (bundles local files). Pure-API tools live in the Zibby Remote MCP (api-prod.zibby.app/mcp).",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -27,7 +27,7 @@
27
27
  ],
28
28
  "repository": {
29
29
  "type": "git",
30
- "url": "https://github.com/ZibbyHQ/zibby-agent"
30
+ "url": "https://github.com/ZibbyDev/zibby-agent"
31
31
  },
32
32
  "dependencies": {
33
33
  "@modelcontextprotocol/sdk": "^1.29.0",
@@ -37,7 +37,7 @@
37
37
  "engines": {
38
38
  "node": ">=18.0.0"
39
39
  },
40
- "license": "MIT",
40
+ "license": "UNLICENSED",
41
41
  "author": "Zibby",
42
42
  "homepage": "https://zibby.dev"
43
43
  }