Skip to main content
Glama
Nikhilprasad-r

Redmine MCP Server

redmine_issue_category_get

Retrieve a Redmine issue category by its ID to access category details for issue tracking and management.

Instructions

Get issue category (GET /issue_categories/:id.json).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.1/5.0
Behavior3/5

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

The explicit HTTP GET signals a read-only, non-destructive operation, which is meaningful because no annotations are provided. However, it does not mention not-found behavior, permissions, or side effects, so the description carries only partial behavioral transparency.

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 front-loaded sentence with no filler. The action and endpoint are exactly what an agent needs for a simple one-parameter GET, so 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 trivial single-parameter read, the description plus schema provide the essential resource, method, and required parameter. It leaves usage-selection and response-shape details implicit, but those gaps are relatively minor given the tool's simplicity.

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

Parameters2/5

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

Schema description coverage is 0%, and the description provides no explanation that 'id' is the identifier of the issue category to fetch; it only echoes ':id' in the endpoint. With no schema descriptions, the description needed to compensate and does not.

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

Purpose4/5

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

The description states a specific action, 'Get', on a specific resource, 'issue category', and the endpoint makes the target unambiguous. It does not explicitly contrast a sibling tool, but it is still clear enough to distinguish from the list/create/update/delete category tools.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus redmine_issue_categories_list or the issue-category mutation tools. Usage is only implicitly suggested by the verb and resource, with no exclusions or alternatives.

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