mindwiki_list_pages
List pages in the vault, optionally filtered by path prefix.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| prefix | string | No | Filter by path prefix (e.g., "patterns/") |
| limit | number | No | Max results (default: 100, max: 500) |
Example Request
json
{
"tool": "mindwiki_list_pages",
"arguments": {
"prefix": "patterns/"
}
}Example Response
json
{
"pages": [
{ "path": "patterns/feedback-loops.md", "title": "Feedback Loops", "updated": "2026-04-06" },
{ "path": "patterns/emergence.md", "title": "Emergence", "updated": "2026-03-28" },
{ "path": "patterns/resonance.md", "title": "Resonance", "updated": "2026-03-15" }
],
"total": 3
}