mindwiki_write_page

Write or update a page in the vault.

Parameters

ParameterTypeRequiredDescription
pathstringYesFile path relative to vault root
contentstringYesFull markdown content including frontmatter
mergebooleanNoIf true, merges with existing content (default: false)

Example Request

json
{
  "tool": "mindwiki_write_page",
  "arguments": {
    "path": "capture/new-idea.md",
    "content": "---\ntype: capture\n---\n\n# New Idea\n\nJust had a thought about..."
  }
}

Example Response

json
{
  "success": true,
  "path": "capture/new-idea.md",
  "created": true
}