Skip to main content
Glama

wp_add_page

Create a new WordPress page from a title and content, and optionally set its status to draft or publish through the WordPress MCP Python server.

Instructions

Add a new WordPress page

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
statusNo
contentYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure, and it delivers almost nothing. It does not say whether the page is created as draft or published by default, what permissions are needed, or what happens on title collision.

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

Conciseness4/5

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

One short sentence that is fully front-loaded with no wasted words. It is efficient, but its brevity is under-specification rather than disciplined conciseness.

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

Completeness1/5

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

A mutation tool with no annotations, no output schema, and 0% schema description coverage needs the description to carry a lot, and this one carries none. An agent cannot know default status, permissions, or return shape from the definition.

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

Parameters1/5

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

Schema description coverage is 0% and the description adds no parameter meaning at all. In particular the status enum (draft/publish) and the required title/content set are left entirely unexplained, and the schema itself documents nothing.

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

Purpose3/5

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

States a clear verb (Add) and resource (WordPress page), so the basic purpose is legible. However, it never distinguishes itself from the sibling wp_add_post, which is a near-identical operation, leaving the agent to guess whether pages and posts are interchangeable.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus wp_add_post or wp_update_page. With 47 sibling tools and no routing hints, the agent gets no help selecting correctly.

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