Skip to content
K

mm_create_doc

[DEPRECATED — use mm_create with entity=doc] Create a new documentation entry. Creates a .md file in .mm/docs/ and updates the docs.md dashboard. Use for living reference documents (API docs, architecture guides, runbooks).

  • Category: Entity Creation
  • Source: Built-in
  • Required parameters: 2
  • Total parameters: 5
ParameterTypeRequiredDescription
project_pathstringYesAbsolute path to the project root
titlestringYesDoc title
categorystringNoDoc category (e.g., ‘api’, ‘architecture’, ‘onboarding’, ‘runbook’)
source_urlstringNoExternal URL where the canonical doc lives (GitHub wiki, Notion, etc.)
contentstringNoInitial markdown content for the doc file
{
"tool": "mm_create_doc",
"arguments": {
"project_path": "/Users/you/projects/my-app",
"title": "My Example",
"category": "example-category",
"source_url": "https://example.com"
}
}
  • 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_add_task - [DEPRECATED — use mm_create with entity=task] Add a task to a spec’s implemen…
  • 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…