@jive-ai/cli 0.0.17 → 0.0.18
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.mjs +11 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1388,7 +1388,11 @@ async function startMcpServer() {
|
|
|
1388
1388
|
return { tools: [
|
|
1389
1389
|
{
|
|
1390
1390
|
name: "list_subagents",
|
|
1391
|
-
description: "List all subagents for the selected team. Returns lightweight list of subagent names, descriptions and IDs."
|
|
1391
|
+
description: "List all subagents for the selected team. Returns lightweight list of subagent names, descriptions and IDs.",
|
|
1392
|
+
inputSchema: {
|
|
1393
|
+
type: "object",
|
|
1394
|
+
properties: {}
|
|
1395
|
+
}
|
|
1392
1396
|
},
|
|
1393
1397
|
{
|
|
1394
1398
|
name: "call_subagent",
|
|
@@ -1410,7 +1414,11 @@ async function startMcpServer() {
|
|
|
1410
1414
|
},
|
|
1411
1415
|
{
|
|
1412
1416
|
name: "list_mcp_servers",
|
|
1413
|
-
description: "List all MCP servers for the selected team. Returns lightweight list of server names, descriptions and IDs."
|
|
1417
|
+
description: "List all MCP servers for the selected team. Returns lightweight list of server names, descriptions and IDs.",
|
|
1418
|
+
inputSchema: {
|
|
1419
|
+
type: "object",
|
|
1420
|
+
properties: {}
|
|
1421
|
+
}
|
|
1414
1422
|
},
|
|
1415
1423
|
{
|
|
1416
1424
|
name: "list_tools",
|
|
@@ -2095,7 +2103,7 @@ async function checkTeamMembership() {
|
|
|
2095
2103
|
|
|
2096
2104
|
//#endregion
|
|
2097
2105
|
//#region package.json
|
|
2098
|
-
var version = "0.0.
|
|
2106
|
+
var version = "0.0.18";
|
|
2099
2107
|
|
|
2100
2108
|
//#endregion
|
|
2101
2109
|
//#region src/index.ts
|