Delete tag
delete_tagDelete a blog tag by ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tagId | Yes | Tag ID. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
delete_tagDelete a blog tag by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| tagId | Yes | Tag ID. | |
| blogId | Yes | Blog ID. Use list_blogs to discover available blog IDs. |
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description aligns with the destructiveHint annotation and confirms that the action removes a blog tag. It adds no extra behavioral context such as permanence, cascading effects, or permission requirements, but it is consistent and sufficient for a simple delete operation.
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 efficient sentence containing the verb, target resource, and action qualifier. Every word earns its place, and no unnecessary detail is included.
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 two-parameter delete operation, the description, input schema, and annotations together provide everything needed. The schema documents both required parameters, the detection annotation covers safety, and an output schema exists.
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 100%, with both tagId and blogId documented. The description's 'by ID' phrasing adds no meaningful semantic information beyond what the schema already provides, so the baseline score of 3 is appropriate.
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 uses a specific verb ('Delete') with a clear resource ('blog tag') and the selection mechanism ('by ID'). It is unambiguous and immediately distinguishable from sibling delete_* tools targeting other resources like posts or collections.
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 gives no explicit guidance about when to use this tool versus alternatives such as update_tag or list_tags. Usage is only implied by the verb and resource name, with no exclusions or routing advice.
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.