mediawiki_get_page_info
Retrieve a page's metadata including last edit timestamp, size, protection status, and creator. Useful for checking page history and security without fetching content.
Instructions
Get page metadata without content.
USE WHEN: User asks "when was X last edited", "who created the FAQ", "is the page protected".
NOT FOR: Getting page content (use mediawiki_get_page). Not for full edit history (use mediawiki_get_revisions).
PARAMETERS:
title: Page name (required)
RETURNS: Last edit timestamp, page size, protection status, creator.
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. | |
| title | Yes | Page title |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| page_id | Yes | ||
| namespace | Yes | ||
| content_model | Yes | ||
| page_language | Yes | ||
| length | Yes | ||
| touched | Yes | ||
| last_revision_id | Yes | ||
| categories | No | ||
| links_count | Yes | ||
| exists | Yes | ||
| redirect | Yes | ||
| redirect_to | No | ||
| protection | No |