# vibe-kanban Quick reference for Vibe Kanban MCP interactions. ## Available Projects - `gmx-interface`: 574c1123-facf-4a8d-a6dd-1789db369fbf - `kaigen-web`: cd0907b5-0933-4f6c-9516-aac4d5d360bc - `managing-apps`: 1a4fdbff-8b23-49d5-9953-2476846cbcc2 ## Common Operations ### List Tasks List all tasks in a project: - Use `list_tasks` with `project_id: "1a4fdbff-8b23-49d5-9953-2476846cbcc2"` for managing-apps ### Create Task Create new task: - Use `create_task` with `project_id` and `title` (description optional) ### Update Task Update task status/title/description: - Use `update_task` with `task_id` and optional `status`, `title`, `description` - Statuses: `todo`, `inprogress`, `inreview`, `done`, `cancelled` ### Get Task Details Get full task info: - Use `get_task` with `task_id` ### Delete Task Remove task: - Use `delete_task` with `task_id` ## Notes - Always pass `project_id` or `task_id` where required - Use `list_projects` to get project IDs - Use `list_tasks` to get task IDs - See `docs/VIBE_KANBAN_QUICK_START.md` for full documentation