mediawiki_list_pages
Retrieve page titles from a MediaWiki wiki with filtering options like prefix matching, namespace selection, and pagination support.
Instructions
List wiki pages with optional prefix filter.
USE WHEN: User asks "list all pages", "show pages starting with API", "what pages exist".
NOT FOR: Finding pages by content (use mediawiki_search).
PARAMETERS:
prefix: Filter by title prefix (optional)
namespace: Namespace ID (default 0 = main)
limit: Max pages (default 50)
continue_from: Pagination token from previous response
RETURNS: Page titles and IDs.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prefix | No | Filter pages starting with this prefix | |
| namespace | No | Namespace ID (0=main, 1=talk, etc.) | |
| limit | No | Maximum pages to return (default 50, max 500) | |
| continue_from | No | Continue token for pagination |