Elementor MCP Server

update_page

Update WordPress pages with Elementor data by specifying page ID, title, status, content, and JSON-based Elementor data. Verifies success with a boolean response.

Instructions

Updates an existing page in WordPress with Elementor data, it will return a boolean value to indicate if the update was successful.

Input Schema

NameRequiredDescriptionDefault
contentNoThe standard WordPress content for the page (optional).
elementor_dataNoThe Elementor page data as a JSON string. Optional for update.
pageIdYesThe ID of the page to update.
statusNoThe status for the page (e.g., 'publish', 'draft').
titleNoThe title for the page.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content": { "description": "The standard WordPress content for the page (optional).", "type": "string" }, "elementor_data": { "description": "The Elementor page data as a JSON string. Optional for update.", "type": "string" }, "pageId": { "description": "The ID of the page to update.", "exclusiveMinimum": 0, "type": "integer" }, "status": { "description": "The status for the page (e.g., 'publish', 'draft').", "enum": [ "publish", "future", "draft", "pending", "private" ], "type": "string" }, "title": { "description": "The title for the page.", "type": "string" } }, "required": [ "pageId" ], "type": "object" }

You must be authenticated.

Other Tools from Elementor MCP Server

Related Tools

ID: 9mur5ns1hw