wordpress_create_term
wordpress_create_termAdd a new term to a specified taxonomy on your WordPress site.
Instructions
Create a new term in a taxonomy
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taxonomy | Yes | ||
| name | Yes |
wordpress_create_termAdd a new term to a specified taxonomy on your WordPress site.
Create a new term in a taxonomy
| Name | Required | Description | Default |
|---|---|---|---|
| taxonomy | Yes | ||
| name | Yes |
Changes observed during successful MCP inspections.
v1.0.0Input schema / $schemaAdded value: +"http://json-schema.org/draft-07/schema#"Input schema / additionalPropertiesAdded value: +falseDoes the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full responsibility for disclosing behavioral traits. It only states the basic action and does not mention side effects, error conditions, permissions, or behavior on duplicate terms. This is a minimal disclosure with no added behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no unnecessary words. It is appropriately front-loaded, but the extreme brevity comes at the cost of omitting useful contextual information. It is concise, but not fully informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with two required parameters and no annotations or output schema, the description is lacking. It fails to explain the meaning of 'term', the taxonomy parameter, or any constraints. The description is too sparse to be considered complete for an agent to use it reliably.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It implies 'taxonomy' is the target taxonomy but provides no explanation of what 'name' represents or the expected format/value for either parameter. The description adds little beyond the schema's basic types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create a new term') and the resource ('taxonomy'), using a specific verb. However, it does not explicitly differentiate from sibling tools like create_category or create_tag, which likely serve similar purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives such as create_category, create_tag, or update_term. The description gives no context on prerequisites, taxonomy types, or scenarios where this tool is preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.