@vibetasks/mcp-server 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 +37 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -370,6 +370,43 @@ function setupTools(taskOps) {
|
|
|
370
370
|
};
|
|
371
371
|
}
|
|
372
372
|
},
|
|
373
|
+
// stop_vibing
|
|
374
|
+
{
|
|
375
|
+
name: "stop_vibing",
|
|
376
|
+
description: 'Stop vibing on a task (move back to "todo" status). Use this when pausing work on a task to work on something else.',
|
|
377
|
+
inputSchema: z.object({
|
|
378
|
+
task_id: z.string().describe("Task ID to stop vibing on"),
|
|
379
|
+
context_notes: z.string().optional().describe("Optional: Save where you left off before stopping")
|
|
380
|
+
}),
|
|
381
|
+
handler: async (args, taskOps2) => {
|
|
382
|
+
const updates = { status: "todo" };
|
|
383
|
+
if (args.context_notes) {
|
|
384
|
+
updates.context_notes = args.context_notes;
|
|
385
|
+
}
|
|
386
|
+
const task = await taskOps2.updateTask(args.task_id, updates);
|
|
387
|
+
return {
|
|
388
|
+
content: [
|
|
389
|
+
{
|
|
390
|
+
type: "text",
|
|
391
|
+
text: JSON.stringify(
|
|
392
|
+
{
|
|
393
|
+
success: true,
|
|
394
|
+
task: {
|
|
395
|
+
id: task.id,
|
|
396
|
+
title: task.title,
|
|
397
|
+
status: "todo",
|
|
398
|
+
context_notes: task.context_notes
|
|
399
|
+
},
|
|
400
|
+
message: "Task moved back to todo. Context notes saved for later."
|
|
401
|
+
},
|
|
402
|
+
null,
|
|
403
|
+
2
|
|
404
|
+
)
|
|
405
|
+
}
|
|
406
|
+
]
|
|
407
|
+
};
|
|
408
|
+
}
|
|
409
|
+
},
|
|
373
410
|
// get_vibing_tasks
|
|
374
411
|
{
|
|
375
412
|
name: "get_vibing_tasks",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibetasks/mcp-server",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "VibeTasks MCP Server for Claude Code, Cursor, and AI coding tools. Status-based task management: todo → vibing → done.",
|
|
5
5
|
"author": "Vyas",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
48
|
-
"@vibetasks/core": "^0.5.
|
|
48
|
+
"@vibetasks/core": "^0.5.2",
|
|
49
49
|
"zod": "^3.22.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|