Skip to main content
Glama
igorolv

redmine-mcp-server

getIssueJournal

getIssueJournal
Read-onlyIdempotent

Retrieve a full Redmine journal entry when getIssue returns a compressed or shortened version. Use issue and journal IDs to access the unaltered complete record.

Instructions

Retrieve one known issue journal entry in full, without response compression. Use after getIssue when its compression notes report a dropped or shortened journal and provide the journal ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issueIdYes
journalIdYesJournal entry ID; from getIssue journals

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
userNo
notesNoFree-text note. Empty when the entry only carries field changes.
detailsNoField-level changes recorded in this entry. Raw form — use issue history endpoints for resolved values.
createdOnNoTimestamp the entry was recorded, ISO-8601.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds valuable context beyond those by disclosing the 'without response compression' behavior and explaining that getIssue may return dropped or shortened journals that this tool retrieves in full.

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 tight sentences: the first states the tool's core behavior and key distinction, the second gives the precise usage condition. Every word contributes value, and the most important information is front-loaded.

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

Completeness5/5

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

For a simple two-parameter read-only tool with an output schema and rich annotations, the description is complete. It tells the agent what the tool does, when to use it, and where the required IDs come from, with no meaningful gaps.

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 description coverage is only 50%, with journalId already documented as coming from getIssue journals. The description adds some context for issueId by implying it comes from the getIssue result, but it does not fully explain the relationship or format beyond what can be inferred from the tool name and 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 opens with a specific verb and resource: 'Retrieve one known issue journal entry in full'. It also distinguishes itself from the related getIssue tool by addressing the compression behavior and journal ID requirement, making the tool's purpose unambiguous.

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

Usage Guidelines5/5

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

The description explicitly states when to use this tool: 'Use after getIssue when its compression notes report a dropped or shortened journal'. This provides a clear condition and workflow context, leaving no ambiguity about how it relates to getIssue.

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