Skip to main content
Glama
ArsNovaSingers

ars-nova-wordpress-mcp

Official

Update WordPress Page

wp_update_page
DestructiveIdempotent

Update an existing WordPress page by ID, modifying only the specified fields like title, content, or status. Enables precise partial edits without touching unrelated data.

Instructions

Update an existing page. Only the fields you pass will change.

Args:

  • id (number): Page ID. Required.

  • All other fields optional, same shape as wp_create_page.

  • content_path (string): Optional. Absolute local file path; its contents become the page content (for bodies too large to pass inline). Overrides 'content'.

  • response_format (enum): markdown | json. Default 'markdown'.

Returns: The updated WPContentItem.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPage ID to update.
dateNoPublish/schedule date in ISO 8601 (e.g. '2026-05-15T10:00:00'). For scheduling, also set status='future'.
slugNoURL slug. WP auto-generates from title if omitted on create.
titleNoPost/page title (plain text).
authorNoAuthor user ID. Defaults to the authenticated user on create.
parentNoParent page ID. Use 0 for top-level page.
statusNoStatus: publish | future | draft | pending | private. Default 'draft' on create.
contentNoPost/page HTML content. Send <p>, <h2>, <a>, <img>, etc. WP renders inline.
excerptNoShort summary shown on archive/listing pages.
menu_orderNoNumeric position in the WP page hierarchy.
content_pathNoAbsolute path to a local file (on the machine running this MCP) whose UTF-8 contents become the page 'content'. Use for bodies too large to pass inline. Overrides 'content' if both are given.
featured_mediaNoFeatured image media ID. Use 0 to unset.
response_formatNoOutput format: 'markdown' for human-readable, 'json' for machine-readable.markdown
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate destructive and non-read-only behavior. The description adds meaningful behavioral context: partial update semantics, content_path overriding content, and the output format default. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured, with a front-loaded purpose statement, clear Args list, and Returns line. Every sentence adds information without redundancy or bloat.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive update tool with 13 parameters, the description covers partial update behavior, the content_path use case, and the return type. It lacks details on error conditions or authorization, but annotations and schema provide sufficient safety context. Overall complete for typical usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds value by explicitly noting id is required and all other fields optional, and by explaining content_path overrides content. This exceeds the baseline by providing cross-referential clarity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Update an existing page' with a specific verb and resource, distinguishing it from create operations. The reference to wp_create_page for field shape further clarifies the tool's scope. No ambiguity with sibling tools like wp_update_post.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for updating existing pages with partial field updates ('Only the fields you pass will change'), but does not explicitly state when to use this tool versus alternatives like wp_update_post or wp_delete_page. The cross-reference to wp_create_page is helpful but not a full alternatives discussion.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ArsNovaSingers/ars-nova-wordpress-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server