redmine_roles_list
List all roles available in Redmine to identify permission sets for project assignments.
Instructions
List roles (GET /roles.json).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List all roles available in Redmine to identify permission sets for project assignments.
List roles (GET /roles.json).
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.0.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only reveals the HTTP method (GET), which implies a read-only operation, but gives no information about pagination, authentication requirements, response format, or limits.
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 sentence that conveys the purpose and endpoint with no filler. It is appropriately concise for a no-parameter list endpoint.
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?
With no output schema and no annotations, the description should ideally explain what the response contains or any caveats. It is minimal yet sufficient for a zero-parameter list call, but an agent receives no return-format or pagination context.
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?
The tool has zero parameters, so the baseline is 4. The description adds no parameter details, but none are needed since the input schema is an empty object.
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 states a specific verb and resource: 'List roles'. It also includes the exact endpoint (GET /roles.json). This distinguishes it from the sibling redmine_role_get, which retrieves a single role.
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 verb 'List' implies when to use the tool, but there is no explicit guidance about when to prefer this over redmine_role_get or other sibling tools. No exclusions or alternatives are mentioned, so usage is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.