Skip to content
K

mm_add_task

[DEPRECATED — use mm_create with entity=task] Add a task to a spec’s implementation.md. Tasks are added to the Backlog section by default.

  • Category: Entity Creation
  • Source: Built-in
  • Required parameters: 3
  • Total parameters: 5
ParameterTypeRequiredDescription
project_pathstringYesAbsolute path to the project root
spec_pathstringYesSpec folder name (e.g., ‘2025-12-09-badges’) or full path
titlestringYesTask title
statusstring (enum: completed, in_progress, blocked, backlog)NoTask status (default: backlog)
subtasksarray of stringNoOptional list of subtask titles
{
"tool": "mm_add_task",
"arguments": {
"project_path": "/Users/you/projects/my-app",
"spec_path": "2026-01-15-my-feature",
"title": "My Example",
"status": "completed",
"subtasks": [
"example-subtask"
]
}
}
  • mm_create_feature - [DEPRECATED — use mm_create with entity=feature] Create a new feature to grou…
  • mm_create_spec - [DEPRECATED — use mm_create with entity=spec] Create a new spec with proper s…
  • mm_update_task - [DEPRECATED — use mm_update with entity=task] Update a task’s status in imple…
  • mm_link_spec - [DEPRECATED — use mm_link with entity=spec] Link an existing spec to a featur…
  • mm_create_issue - [DEPRECATED — use mm_create with entity=issue] Create a new issue for trackin…