fetch

Read-only fetch of a single MindWiki page by id or path. Pairs with search for ChatGPT-compatible retrieval flows.

For richer reads (with explicit path semantics), use mindwiki_read_page.

Scope: read

Parameters

ParameterTypeRequiredDescription
idstringYesPage id or path returned by search

Example Request

json
{
  "tool": "fetch",
  "arguments": {
    "id": "patterns/feedback-loops.md"
  }
}

Example Response

json
{
  "id": "patterns/feedback-loops.md",
  "title": "Feedback Loops",
  "content": "---\ntitle: Feedback Loops\n---\n\n# Feedback Loops\n\nA self-reinforcing cycle..."
}

The content field is the full markdown including frontmatter, ready to be displayed or processed.