mediawiki_batch_get_pages_info
Fetch metadata (size, last edit, categories, protection) for multiple wiki pages in one API call. Ideal for gathering info for 2+ pages without retrieving their content.
Instructions
Get metadata for MULTIPLE pages in a single API call.
USE WHEN: You need info (last edit, size, categories) for 2+ pages without their content.
NOT FOR: Single page (use mediawiki_get_page_info). Not for content (use mediawiki_batch_get_pages).
PARAMETERS:
titles: Array of page titles (required, max 50)
RETURNS: Metadata (size, last edit, categories, protection) per page. Missing pages reported with exists=false.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rationale | No | Optional one-sentence explanation of why you are calling this tool. Used for audit trails when present. | |
| titles | Yes | List of page titles to get info for (max 50) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pages | Yes | ||
| total_count | Yes | ||
| exists_count | Yes | ||
| missing_count | Yes |