change_form_screen_page_order

Admin-only MCP tool.

Reorder the pages of a form screen (multi-page screen). Page numbers are a critical part of the screen (elements and settings are attached to pages by their position), so reordering is handled by this dedicated tool rather than update_form_screen. Use get_screen_details to see the current pages and their order first.

Properties

Property Type Required? Description
screen_id integer Required

Required. The id (sid) of the form screen whose pages you want to reorder.

order object Required

Required. A mapping from each current page number to its new page number, both 1-based. It must include every page exactly once and assign each a distinct new position. Example for a 4-page screen that swaps pages 2 and 3: {“1”: 1, “2”: 3, “3”: 2, “4”: 4}.

← Back to the MCP reference