Skip to main content
Glama
Nikhilprasad-r

Redmine MCP Server

redmine_issue_remove_watcher

Remove a user from an issue's watcher list by providing the issue ID and user ID, stopping their notifications for that issue.

Instructions

Remove a watcher from an issue (DELETE /issues/:issue_id/watchers/:user_id.json).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYes
issue_idYes

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 full burden. It discloses the destructive nature via the DELETE verb and the word 'remove', which implies mutation. However, it does not mention side effects, permission requirements, or error handling (e.g., what happens if the user is not a watcher). It is minimally transparent but not rich.

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 a single sentence with no filler. It front-loads the action and includes the endpoint, making it efficient and well-structured. Every word earns its place.

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?

For a simple delete operation with two parameters and no output schema, the description is adequate but not comprehensive. It states the action and endpoint but omits details like consequences, required permissions, or error behavior. Given the simplicity, it is minimally sufficient but could be more informative about what happens on success or failure.

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 0%, so the description must compensate. It indirectly explains parameters via the URL template '/issues/:issue_id/watchers/:user_id.json', which maps issue_id and user_id to their roles. However, it does not explicitly define them or state that user_id is the watcher to remove. The URL provides a hint, but the description adds limited explicit semantics beyond the schema.

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 action: 'Remove a watcher from an issue'. It includes the specific REST endpoint with HTTP method, making the purpose unambiguous and distinct from siblings like add_watcher. The verb and resource are precise.

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 implies the usage context (removing a watcher) but does not explicitly contrast it with alternatives or state when not to use it. It does not mention conditions like 'use add_watcher to add a watcher' or any prerequisites. The context is clear but no exclusions are provided.

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