mediawiki_get_category_members
Retrieve pages, subcategories, or files from a MediaWiki category to organize and access wiki content efficiently.
Instructions
Get all pages that belong to a specific category.
USE WHEN: User asks "show pages in Documentation category", "list all tutorials", "what's in Category:API".
NOT FOR: Listing categories themselves (use mediawiki_list_categories).
PARAMETERS:
category: Category name without "Category:" prefix (required)
type: Filter by type - "page", "subcat", "file", or all (default)
limit: Max members (default 50)
continue_from: Pagination token
RETURNS: Page titles in the category.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes | Category name (with or without 'Category:' prefix) | |
| limit | No | Maximum members to return (default 50, max 500) | |
| continue_from | No | Continue token for pagination | |
| type | No | Filter by type: 'page', 'subcat', 'file', or empty for all |