Gabriel Gordon-Hall
b9c961a666
All changes have been completed successfully. Let me provide a summary of what was fixed: (#2068)
## Summary
I've fixed the MCP tool description parameter mismatches reported in Issue #1942.
### Changes Made
**1. `crates/server/src/mcp/task_server.rs`** - Fixed 4 issues:
- **`update_task`** (line 753): Removed incorrect `project_id` requirement from description
- **`delete_task`** (line 802): Removed incorrect `project_id` requirement from description
- **`get_task`** (line 820): Removed incorrect `project_id` requirement from description
- **`StartWorkspaceSessionRequest.executor`** (line 223): Added missing executors (`AMP`, `QWEN_CODE`, `COPILOT`, `DROID`) to the description
**2. `docs/integrations/vibe-kanban-mcp-server.mdx`** - Updated documentation:
- Added `list_repos` tool to the Project Operations table
- Added new "Context" section with `get_context` tool
- Renamed `start_task_attempt` to `start_workspace_session` (the actual tool name)
- Updated `start_workspace_session` parameters to show `repos` array instead of single `base_branch`
- Updated example JSON to demonstrate correct parameter format
The cargo check passes, confirming all Rust changes compile correctly.