@mtaap/mcp 0.2.13 → 0.5.1
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/README.md +4 -4
- package/dist/apps/activity.html +159 -0
- package/dist/apps/agent-sessions.html +159 -0
- package/dist/apps/kanban.html +159 -0
- package/dist/apps/project-overview.html +159 -0
- package/dist/apps/task-details.html +159 -0
- package/dist/cli.js +1067 -285
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +43 -29
- package/dist/index.js +1065 -283
- package/dist/index.js.map +1 -1
- package/dist/server.js +1234 -295
- package/dist/server.js.map +1 -1
- package/package.json +22 -8
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ DRAFT -> TODO -> IN_PROGRESS -> REVIEW -> DONE
|
|
|
57
57
|
|
|
58
58
|
State transitions:
|
|
59
59
|
- `verify_task`: DRAFT -> TODO (or NEEDS_REVISION if rejected)
|
|
60
|
-
- `update_task
|
|
60
|
+
- `update_task`: edits DRAFT/TODO tasks (state unchanged)
|
|
61
61
|
- `assign_task`: TODO -> IN_PROGRESS
|
|
62
62
|
- `report_pr`: marks task ready for review (REVIEW state)
|
|
63
63
|
- `request_changes`: REVIEW -> IN_PROGRESS
|
|
@@ -170,7 +170,7 @@ Create task with title, description, acceptance criteria. Starts in DRAFT state.
|
|
|
170
170
|
|
|
171
171
|
#### update_task
|
|
172
172
|
|
|
173
|
-
Update task details (title, description, priority, acceptanceCriteria). Only works for DRAFT and TODO states.
|
|
173
|
+
Update task details (title, description, priority, acceptanceCriteria). Only works for DRAFT and TODO states. Task stays in its current state.
|
|
174
174
|
|
|
175
175
|
**Parameters:**
|
|
176
176
|
| Name | Type | Required | Description |
|
|
@@ -182,7 +182,7 @@ Update task details (title, description, priority, acceptanceCriteria). Only wor
|
|
|
182
182
|
| `priority` | TaskPriority | No | New task priority |
|
|
183
183
|
| `acceptanceCriteria` | array | No | New acceptance criteria (replaces existing). Array of `{ id?: string, description: string }` |
|
|
184
184
|
|
|
185
|
-
**Returns:**
|
|
185
|
+
**Returns:** Updated task object with all fields including acceptance criteria.
|
|
186
186
|
|
|
187
187
|
---
|
|
188
188
|
|
|
@@ -512,7 +512,7 @@ Install and run locally using stdio transport:
|
|
|
512
512
|
"mcpServers": {
|
|
513
513
|
"collab": {
|
|
514
514
|
"command": "npx",
|
|
515
|
-
"args": ["@mtaap/mcp"],
|
|
515
|
+
"args": ["-p", "@mtaap/mcp", "collab-mcp"],
|
|
516
516
|
"env": {
|
|
517
517
|
"COLLAB_BASE_URL": "https://collab.mtaap.de",
|
|
518
518
|
"COLLAB_API_KEY": "your-api-key"
|