Skip to main content
Glama
Nikhilprasad-r

Redmine MCP Server

redmine_issue_category_delete

Delete a Redmine issue category permanently. Requires explicit confirmation to prevent accidental removal.

Instructions

Delete issue category (DELETE /issue_categories/:id.json). Requires confirm: true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
confirmYesMust be true to perform destructive action

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the disclosure burden. It reveals the destructive nature by requiring 'confirm: true' and the endpoint, which implies deletion. However, it doesn't state side effects (e.g., what happens to issues in that category), permissions required, or reversibility. The description is adequate for a simple delete but could be more transparent about consequences.

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

Conciseness5/5

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

The description is extremely concise: a single sentence with the essential action, endpoint, and confirmation requirement. It is front-loaded with the verb and resource. No unnecessary words.

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

Completeness3/5

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

Given it's a simple delete with only two params, the description is mostly adequate but lacks mention of any side effects or return format. There is no output schema, but the tool likely returns a success status. Still, for a destructive action, more context (e.g., what happens to associated issues) would be beneficial.

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

Parameters3/5

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

Schema coverage is 50%, with 'confirm' documented in the schema as 'Must be true to perform destructive action'. The description reinforces 'confirm: true', adding no new meaning. The 'id' parameter is not described in the schema or description, but its meaning is obvious. Overall, the description adds marginal value beyond the schema for 'confirm' but leaves 'id' unspecified.

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

Purpose5/5

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

The description clearly states the verb 'Delete' and the resource 'issue category', and includes the exact endpoint (DELETE /issue_categories/:id.json). It is unambiguous and distinguishes from sibling tools like update or create. The 'confirm: true' requirement is immediately highlighted.

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

Usage Guidelines3/5

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

The description implicitly indicates when to use this tool (to delete an issue category), but does not explicitly state when not to use it or mention alternatives. The 'confirm: true' requirement could be considered a usage guideline, but there is no explicit guidance on selecting this over other deletion tools.

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

Deploy Server

Other Tools