mindwiki_list_pages

List pages in your vault, optionally filtered by path prefix.

Scope: read

Parameters

ParameterTypeRequiredDescription
prefixstringNoPath prefix to filter by (e.g. patterns/)

Example Request

json
{
  "tool": "mindwiki_list_pages",
  "arguments": {
    "prefix": "patterns/"
  }
}

Example Response

json
{
  "pages": [
    { "path": "patterns/feedback-loops.md", "title": "Feedback Loops", "updated_at": "2026-04-06T14:22:00Z" },
    { "path": "patterns/emergence.md", "title": "Emergence", "updated_at": "2026-03-28T09:14:00Z" },
    { "path": "patterns/resonance.md", "title": "Resonance", "updated_at": "2026-03-15T18:01:00Z" }
  ]
}

Without a prefix, returns every page in the vault. With a prefix like projects/onboarding/, returns just the matching subset.