mindwiki_read_page

Read a page from your vault by path.

Scope: read

Parameters

ParameterTypeRequiredDescription
pathstringYesPage path (e.g. patterns/resonance.md)

Example Request

json
{
  "tool": "mindwiki_read_page",
  "arguments": {
    "path": "patterns/feedback-loops.md"
  }
}

Example Response

json
{
  "path": "patterns/feedback-loops.md",
  "title": "Feedback Loops",
  "content": "---\ntitle: Feedback Loops\narea: patterns\n---\n\n# Feedback Loops\n\nA self-reinforcing cycle...",
  "content_hash": "5f3c2a1...",
  "updated_at": "2026-04-06T14:22:00Z"
}

The content field is the full markdown including frontmatter. The content_hash is useful as a base_hash for subsequent writes via mindwiki_write_page.