mediawiki_get_user_contributions
Retrieve a user's edit history on MediaWiki wikis to track contributions, review changes, and analyze editing patterns.
Instructions
Get all edits made by a specific user.
USE WHEN: User asks "what did John edit", "show user's contributions", "list edits by admin".
NOT FOR: Page-specific history (use mediawiki_get_revisions). Not for wiki-wide activity (use mediawiki_get_recent_changes).
PARAMETERS:
user: Username (required)
limit: Max contributions (default 50)
start, end: Time range (ISO 8601)
namespace: Filter by namespace
RETURNS: List of pages edited with timestamps and summaries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user | Yes | Username to get contributions for | |
| limit | No | Max contributions to return (default 50, max 500) | |
| namespace | No | Filter by namespace (-1 for all) | |
| start | No | Start from this timestamp (ISO 8601, newer first) | |
| end | No | End at this timestamp (ISO 8601) |