mediawiki_batch_get_pages_info
Retrieve metadata (size, last edit, categories, protection) for up to 50 pages in a single API call. Use when you need page info without content for multiple pages.
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 |
|---|---|---|---|
| titles | Yes | List of page titles to get info for (max 50) | |
| rationale | No | Optional one-sentence explanation of why you are calling this tool. Used for audit trails when present. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pages | Yes | ||
| total_count | Yes | ||
| exists_count | Yes | ||
| missing_count | Yes |