deleteNews
Delete a specific news item from Redmine by providing its ID and desired response format. Ensures removal of news entries via the Redmine API.
Instructions
Delete news
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pathParams | Yes |
Delete a specific news item from Redmine by providing its ID and desired response format. Ensures removal of news entries via the Redmine API.
Delete news
| Name | Required | Description | Default |
|---|---|---|---|
| pathParams | Yes |
Changes observed during successful MCP inspections.
v1.2.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotation readOnlyHint=false already indicates the tool performs a write operation, and the description is consistent with that. However, the description adds no additional behavioral context such as irreversibility, authorization requirements, or side effects, which would be valuable for a destructive action.
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 brief (two words), which is under-specification rather than effective conciseness. It fails to convey essential information and does not front-load any helpful detail for the agent.
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 delete operation with nested parameters (newsId, format) and no output schema, the description offers no operational context. It does not explain what happens on success, error handling, or any effects on related data, leaving the agent without sufficient information to invoke the tool 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 by explaining parameters. It does not mention newsId or the format field, nor clarify what these parameters control. The description provides no semantic value over the schema.
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 'Delete news' uses a specific verb (delete) and a specific resource (news), clearly distinguishing it from siblings like deleteIssue and deleteProject. It exactly matches the tool's function with no ambiguity.
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?
There is no guidance on when to use this tool, no mention of alternatives, and no conditions or exclusions. The description simply states the action without any context about when it is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.