mm_export_doc
Export a doc to .docx (Word), Google Docs compatible HTML, or Slack mrkdwn format. For docx, saves to .mm/docs/exports/ and returns the file path. For gdocs/slack, returns the converted content string.
At a Glance
Section titled “At a Glance”- Category: Docs
- Source: Built-in
- Availability: Opt-in — set
MM_TOOL_GROUPS=docs(always dispatchable by name) - Required parameters: 3
- Total parameters: 3
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
project_path | string | Yes | Absolute path to the project root |
doc_identifier | string | Yes | Doc filename (e.g., ‘api-auth-guide-03-08-2026.md’) or title substring to match |
format | string (enum: docx, gdocs, slack) | Yes | Export format: docx (Word document), gdocs (HTML for Google Docs), slack (Slack mrkdwn) |
Example
Section titled “Example”{ "tool": "mm_export_doc", "arguments": { "project_path": "/Users/you/projects/my-app", "doc_identifier": "my-example", "format": "docx" }}Related Tools
Section titled “Related Tools”mm_delete_doc- Delete a doc file and remove its entry from the docs.md dashboard. This is de…