mindwiki_read_page
Read the full content of a page by its path or title.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| path | string | Yes* | File path relative to vault root |
| title | string | Yes* | Page title (alternative to path) |
*One of path or title is required.
Example Request
json
{
"tool": "mindwiki_read_page",
"arguments": {
"path": "patterns/feedback-loops.md"
}
}Example Response
json
{
"path": "patterns/feedback-loops.md",
"title": "Feedback Loops",
"frontmatter": {
"type": "pattern",
"domains": ["physics", "psychology", "business"],
"status": "evergreen"
},
"content": "# Feedback Loops\n\nA self-reinforcing cycle...",
"backlinks": ["research/complex-systems.md", "systems/morning-routine.md"]
}