Skip to main content
Glama
gmlee-ncurity

Redmine MCP Server

redmine_get_issue

Retrieve a specific Redmine issue by ID, with optional comments (journals) toggled on demand. Control comment pagination, ordering, and text truncation to save tokens.

Instructions

Get a specific issue. Comments (journals) are OFF by default to save tokens; the total count is always shown. Enable and page through comments with the journals_* params.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesIssue ID
includeNoExtra data besides journals: watchers, relations, children, attachments, changesets. Passing 'journals' here also turns comments on unless include_journals is explicitly set.
journals_limitNoMax comments to return when include_journals=true (1-100, default 10)
journals_orderNo"desc" (newest first, default) or "asc" (oldest first)
journals_offsetNoComment start index for paging (default 0; with desc order, 0 = newest)
include_journalsNoReturn comment bodies (default false). When false, only the total count is shown.
description_max_charsNoTruncate the description to this many chars. Omit or 0 = full text.
journal_notes_max_charsNoTruncate each comment to this many chars (default 500). 0 = full text.
Behavior4/5

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

With no annotations, the description must disclose behavior directly. It reveals that journals are off by default to save tokens, that a total count is always returned, and that pagination is available via journals_* params. This adds meaningful behavioral insight beyond the simple 'get,' especially the token-saving default and count behavior.

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?

Two sentences: the first states the purpose, the second explains the key behavioral default. No filler or redundant information; front-loaded and efficient.

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

Completeness4/5

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

Despite having no output schema and no annotations, the description covers the most important behavioral aspects (default journal behavior, count, pagination, truncation options in schema). It doesn't enumerate every parameter, but the schema does the heavy lifting. It provides a complete functional picture for a read tool, though it doesn't specify return structure beyond the total count.

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

Parameters4/5

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

The input schema already documents all 8 parameters with rich descriptions (100% coverage), so the baseline is 3. The description adds value by grouping the journals_* parameters as a family, explaining their purpose (comments) and the default off state, which helps the agent understand the schema's parameters as a cohesive mechanism. It also introduces the term 'comments' as an alias for 'journals.'

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 opens with 'Get a specific issue,' which is a specific verb + resource pair that clearly identifies the tool as retrieving a single issue by ID. This differentiates it from sibling redmine_list_issues (plural) and the mutation tools. It also adds the journals behavior detail, but the core purpose is precise.

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

Usage Guidelines4/5

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

The description states the context for fetching one issue and provides guidance on the default comment behavior and how to enable/page through journals. It does not explicitly name alternatives like redmine_list_issues, but the singular 'specific issue' implies when this tool is appropriate; thus it's clear context without exclusions.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gmlee-ncurity/redmine-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server