Skip to main content
Glama

Get a Redmine time entry

get_time_entry
Read-onlyIdempotent

Retrieve a single Redmine time entry by its numeric ID to view visible fields and custom fields, without altering any data.

Instructions

Read one visible Redmine time entry from GET /time_entries/:id.json for the configured API user. The required time_entry_id is one positive safe numeric ID. The result contains only the documented time-entry fields, visible custom fields when returned, and base-path-safe browser URLs. Redmine enforces the user's view_time_entries permission and time-entry visibility and may return 401, 403, or 404. This tool never changes Redmine data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
time_entry_idYesPositive Redmine time-entry ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlYes
userNo
hoursYes
issueNo
projectNo
spentOnNo
activityNo
commentsNo
createdOnNo
updatedOnNo
customFieldsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

Even with readOnlyHint and destructiveHint annotations, the description adds meaningful behavioral context: the exact endpoint, permission requirements, possible 401/403/404 responses, visible custom fields, URL behavior, and an explicit statement that it never changes Redmine data. No contradiction with annotations.

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 dense but every sentence contributes: the action and endpoint are front-loaded, followed by parameter, result, permission/error behavior, and safety. There is no filler or unnecessary repetition.

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 single-parameter read tool with an output schema and strong annotations, the description covers everything needed to invoke it correctly: endpoint, required ID, permission/error behavior, result shape, and side-effect-free guarantee. It is fully complete.

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 100% and the parameter is well-documented in the schema. The description adds that the ID is 'positive safe numeric' and required, but this mostly restates the schema's exclusiveMinimum and integer type, so it only marginally adds meaning.

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 is explicit: 'Read one visible Redmine time entry from GET /time_entries/:id.json for the configured API user.' This names a specific verb, resource, and endpoint, and the singular 'one' clearly distinguishes it from list-oriented siblings like list_time_entries.

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 clearly positions this as a single-resource read by ID and notes the configured API user and visibility constraints. It does not explicitly name alternatives or state when not to use it, so it stops short of a 5.

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