@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.
- package/LICENSE +4 -20
- package/README.md +2 -1
- package/index.js +11 -10
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -1,21 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
Copyright (c) 2026 Zibby Labs. All rights reserved.
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
package/index.js
CHANGED
|
@@ -202,16 +202,17 @@ const server = new McpServer({
|
|
|
202
202
|
version: '0.3.0',
|
|
203
203
|
});
|
|
204
204
|
|
|
205
|
-
// ──
|
|
206
|
-
// The product UI now calls deployed automations "Agents".
|
|
207
|
-
//
|
|
208
|
-
//
|
|
209
|
-
//
|
|
210
|
-
//
|
|
211
|
-
//
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
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.
|
|
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/
|
|
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": "
|
|
40
|
+
"license": "UNLICENSED",
|
|
41
41
|
"author": "Zibby",
|
|
42
42
|
"homepage": "https://zibby.dev"
|
|
43
43
|
}
|