mediawiki_get_revisions
Retrieve revision history for a specific page, including timestamps, users, and edit summaries. Filter by time range, user, or limit results.
Instructions
Get revision history for a specific page.
USE WHEN: User asks "who edited the FAQ", "show edit history of X", "when was this page last changed".
NOT FOR: Wiki-wide activity (use mediawiki_get_recent_changes). Not for comparing versions (use mediawiki_compare_revisions).
PARAMETERS:
title: Page name (required)
limit: Max revisions (default 50)
start, end: Time range (ISO 8601)
user: Filter by user
RETURNS: Revision list with timestamps, users, sizes, and edit summaries.
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 to get revision history for | |
| limit | No | Max revisions to return (default 20, max 100) | |
| start | No | Start from this timestamp (ISO 8601, newer first) | |
| end | No | End at this timestamp (ISO 8601) | |
| user | No | Filter to revisions by this user |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| page_id | Yes | ||
| revisions | Yes | ||
| count | Yes | ||
| has_more | Yes |