vibekit-mcp 0.5.1 → 0.5.2
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 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -525,8 +525,8 @@ const tools = [
|
|
|
525
525
|
limit: { type: "number", description: "Max tasks to return (default: 10)" },
|
|
526
526
|
status: {
|
|
527
527
|
type: "string",
|
|
528
|
-
enum: ["pending", "running", "
|
|
529
|
-
description: "Filter by status",
|
|
528
|
+
enum: ["pending", "running", "complete", "failed"],
|
|
529
|
+
description: "Filter by status. Note: completed tasks have status 'complete' (not 'completed')",
|
|
530
530
|
},
|
|
531
531
|
},
|
|
532
532
|
},
|
|
@@ -758,8 +758,8 @@ async function handleTool(name, args) {
|
|
|
758
758
|
case "vibekit_create_app_schedule":
|
|
759
759
|
result = await apiRequest("POST", `/hosting/app/${args.appId}/schedules`, {
|
|
760
760
|
name: args.name,
|
|
761
|
-
|
|
762
|
-
|
|
761
|
+
cron_expression: args.cron, // API field is "cron_expression", not "cron"
|
|
762
|
+
prompt: args.task, // API field is "prompt", not "task"
|
|
763
763
|
});
|
|
764
764
|
break;
|
|
765
765
|
case "vibekit_delete_app_schedule":
|
|
@@ -768,7 +768,7 @@ async function handleTool(name, args) {
|
|
|
768
768
|
// Tasks
|
|
769
769
|
case "vibekit_submit_task":
|
|
770
770
|
result = await apiRequest("POST", "/task", {
|
|
771
|
-
|
|
771
|
+
prompt: args.task, // API field is "prompt", not "task"
|
|
772
772
|
repo: args.repo,
|
|
773
773
|
branch: args.branch,
|
|
774
774
|
deploy: args.deploy ?? true,
|
|
@@ -801,7 +801,7 @@ async function handleTool(name, args) {
|
|
|
801
801
|
}
|
|
802
802
|
const task = poll.data;
|
|
803
803
|
result = poll;
|
|
804
|
-
if (task.status === "completed" || task.status === "failed")
|
|
804
|
+
if (task.status === "complete" || task.status === "completed" || task.status === "failed")
|
|
805
805
|
break;
|
|
806
806
|
await new Promise((r) => setTimeout(r, 5000));
|
|
807
807
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibekit-mcp",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "MCP server for VibeKit — deploy apps, manage hosting, chat with AI agents, and run coding tasks from Claude Desktop, Cursor, and other MCP clients.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|