Skip to main content
Glama
suryamalempati

Redmine MCP Server

List Time Entries

list_time_entries

Retrieve Redmine time entries with filters for user, project, issue, and date range, plus pagination or fetch all for reports and aggregations.

Instructions

List time entries with optional filters and pagination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results per page (max 100).
offsetNoPagination offset (ignored when fetch_all=True).
to_dateNoEnd date filter (YYYY-MM-DD).
user_idNoFilter by user ID.
issue_idNoFilter by issue ID.
fetch_allNoIf True, automatically paginates and returns all matching entries in a single response. Use this for reports/aggregations.
from_dateNoStart date filter (YYYY-MM-DD).
project_idNoFilter by project ID.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it only discloses that pagination exists and filters are optional. It never states the read-only nature explicitly, nor auth requirements, defaults, or rate limits. An output schema exists, so return-value detail is fairly excused, but the behavioral picture remains thin.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with no padding or repetition. The trailing "with optional filters and pagination" is slightly generic but still earns its place by naming the two operative dimensions.

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 an 8-parameter list tool with full schema coverage and an output schema, the essentials for invocation are present. However, the fetch_all pagination behavior and the read-only nature are never surfaced at the description level, leaving the agent to reconstruct usage from structured fields alone.

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 100% across all 8 parameters, so limit, offset, fetch_all, and every filter are already documented in the schema. The description adds no syntax, format, or interaction detail beyond that, which is the expected baseline when the schema does the heavy lifting.

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?

States a specific verb and resource ("List time entries") and notes the two axes it operates on, filters and pagination. It implicitly distinguishes itself from the singular sibling get_time_entry, but never names or contrasts with it explicitly, so differentiation is left to inference.

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?

There is no when-to-use guidance, no prerequisites, and no mention of the pagination-vs-fetch_all tradeoff that the schema flags for reports/aggregations. "Optional filters and pagination" describes what the tool does, not when an agent should choose it over get_time_entry or search.

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