mindwiki_read_page

Read the full content of a page by its path or title.

Parameters

ParameterTypeRequiredDescription
pathstringYes*File path relative to vault root
titlestringYes*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"]
}