Delete article
cms_delete_articleDelete article. Guidance: Delete one CMS article by article id. | context: id
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Article id returned by cms_list_articles. |
cms_delete_articleDelete article. Guidance: Delete one CMS article by article id. | context: id
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Article id returned by cms_list_articles. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already indicate destructive behavior (destructiveHint: true), and the description's 'Delete' matches that. No additional behavioral details such as cascade effects, irreversibility, or confirmation requirements are provided, but there is no contradiction.
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 extremely concise, consisting of only a verb and resource, with no redundant or tangential content. It is well-structured and immediately comprehensible.
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 simple delete operation, the description and schema cover the essential information an agent needs: what to delete and how to specify it. No output schema is required, and the context is sufficient to act without further clarification.
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?
The schema fully describes the single 'id' parameter with type, minimum value, and a clear explanation that it is the article ID from cms_list_articles. The description adds no extra semantic information beyond what the schema already provides.
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 'Delete' and the resource 'article', making the tool's purpose unambiguous. It is easily distinguished from sibling tools like cms_delete_article_paragraph, which target a different resource.
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?
The description specifies that the tool deletes one article by its ID, which is sufficient for typical usage. It does not explicitly state when to prefer this tool over alternatives, but the resource name and parameter description disambiguate from paragraph-level delete tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.