mediawiki_move_page
Rename a wiki page by moving it to a new title, with automatic redirect creation and optional talk page or subpage moves.
Instructions
Move (rename) a wiki page. Creates a redirect from the old title.
USE WHEN: User says "rename the page", "move X to Y", "change the page title".
NOT FOR: Editing page content (use mediawiki_edit_page or mediawiki_find_replace).
PARAMETERS:
from: Current page title (required)
to: New page title (required)
reason: Reason for the move (optional)
no_redirect: Don't create redirect from old title (default false)
move_talk: Also move the talk page (default true)
move_subpages: Also move subpages (default false)
RETURNS: Includes revision ID, diff URL, and undo instructions.
WARNING: Requires move permissions. Creates a redirect from the old title by default.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Current page title | |
| to | Yes | New page title | |
| reason | No | Reason for the move | |
| no_redirect | No | Don't create a redirect from the old title (requires suppressredirect right) | |
| move_talk | No | Also move the talk page if it exists (default true) | |
| move_subpages | No | Also move subpages if they exist |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | Yes | ||
| from | Yes | ||
| to | Yes | ||
| reason | No | ||
| redirect_url | No | ||
| talk_moved | No | ||
| message | Yes |