List wiki pages
wiki_list_pagesEnumerate wiki pages without a search query, filtered by tags and path prefixes, returning matching pages and their count.
Instructions
Enumerate ok-wiki pages without a search query — for "what's under projects/?" or "what's tagged runbook?". Filters by tag server-side; pathPrefix is a client-side filter over the fetched page of results only. Returns { pages, count }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Return only pages carrying ALL of these tag slugs. Applied server-side before the limit. | |
| limit | No | Maximum rows the server returns (1-100, default 25). Passed through to the server; `pathPrefix` then filters within these rows. | |
| orderBy | No | Server-side sort column (default UPDATED). | UPDATED |
| direction | No | Server-side sort direction (default DESC — newest first under UPDATED). | DESC |
| pathPrefix | No | Client-side filter: keeps only rows of the fetched page of results whose path starts with this prefix. It filters a page of results, NOT the whole wiki — a page missing from the output may simply be outside the first `limit` rows, so raise `limit` or sort by PATH before concluding a prefix is empty. |