mm_create_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).
At a Glance
Section titled “At a Glance”- Category: Entity Creation
- Source: Built-in
- Required parameters: 2
- Total parameters: 5
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
project_path | string | Yes | Absolute path to the project root |
title | string | Yes | Doc title |
category | string | No | Doc category (e.g., ‘api’, ‘architecture’, ‘onboarding’, ‘runbook’) |
source_url | string | No | External URL where the canonical doc lives (GitHub wiki, Notion, etc.) |
content | string | No | Initial markdown content for the doc file |
Example
Section titled “Example”{ "tool": "mm_create_doc", "arguments": { "project_path": "/Users/you/projects/my-app", "title": "My Example", "category": "example-category", "source_url": "https://example.com" }}Related Tools
Section titled “Related Tools”mm_create_feature- Create a new feature to group related specs. Features are stored in .mm/featu…mm_create_spec- Create a new spec with proper structure. Creates spec.md and implementation.m…mm_add_task- Add a task to a spec’s implementation.md. Tasks are added to the Backlog sect…mm_update_task- Update a task’s status in implementation.md. Moves the task to the appropriat…mm_link_spec- Link an existing spec to a feature. Updates the feature’s linked_specs array …