mediawiki_get_stale_pages
Identify wiki pages that have not been edited within a set number of days to find outdated or stale content needing review.
Instructions
Find pages that haven't been edited in a specified number of days.
USE WHEN: User asks "find outdated pages", "which pages need review", "show stale content", "wiki hygiene check".
NOT FOR: Recent activity (use mediawiki_get_recent_changes). Not for orphaned pages (use mediawiki_find_orphaned_pages).
PARAMETERS:
days: Staleness threshold in days (default 90)
category: Limit to pages in this category (optional)
namespace: Namespace to check (default 0 = main)
limit: Max pages to return (default 50, max 200)
RETURNS: Stale pages sorted by last edit (oldest first), with days since edit and last editor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Pages not edited in this many days (default 90) | |
| category | No | Limit to pages in this category | |
| namespace | No | Namespace to check (default 0 = main) | |
| limit | No | Max pages to return (default 50, max 200) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days_threshold | Yes | ||
| stale_pages | Yes | ||
| stale_count | Yes | ||
| total_scanned | Yes | ||
| message | Yes |