mindwiki_write_page
Write or update a page in the vault.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| path | string | Yes | File path relative to vault root |
| content | string | Yes | Full markdown content including frontmatter |
| merge | boolean | No | If 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
}