mediawiki_get_revisions
Retrieve edit history for a specific MediaWiki page to view contributors, timestamps, and changes. Use to track page modifications, identify editors, or analyze revision patterns.
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 |
|---|---|---|---|
| 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 |