Skip to main content
Glama

tempo_get_worklogs_by_issue

Read-only

Retrieve all Tempo worklogs logged against a specific Jira issue. Filter by date range and paginate results to analyze time entries.

Instructions

Retrieve all Tempo worklogs for a specific Jira issue.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoEnd date (YYYY-MM-DD)
fromNoStart date (YYYY-MM-DD)
viewNoResponse shape: "compact" (default) drops fields the response already carries elsewhere; "full" returns every field this server understands. compact strips image/avatar URLs from the response; "full" returns Tempo's payload untouched. No field projection: this server has no verified record of which Tempo fields matter, and inventing one would risk dropping a field a caller needs.
limitNoMax results (default 50)
offsetNoPagination offset
issueIdYesJira issue id
updatedFromNoFilter by update date/time (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.1

TDQS

C2.9/5.0
Behavior2/5

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

The readOnlyHint annotation already covers that this is a read operation, and the description adds no behavioral context beyond that. It does not mention pagination behavior, default limits, or response characteristics, even though the schema provides limit/offset parameters. Since the annotation covers safety but the description fails to add any additional behavioral transparency, this scores below the baseline.

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 a single concise sentence with no filler. It is front-loaded with the action and resource, and every word contributes to defining the tool's purpose. This is an appropriate size for a simple retrieval tool.

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

Completeness2/5

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

Given the presence of seven parameters and no output schema, the description should provide more context about how the tool behaves, such as default pagination, time-range semantics, or what 'all' means in relation to the from/to parameters. The schema covers parameters but the description does not explain the tool's overall behavior or how it differs from sibling retrieval tools, making it incomplete for an agent to invoke correctly without external hints.

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%, so all seven parameters have descriptions in the schema. The description itself does not add meaning beyond what the schema already provides. Baseline 3 is appropriate because the schema does the heavy lifting; the description only restates that worklogs are for a specific issue, which is already implied by the required issueId parameter.

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?

The description clearly states the action (retrieve) and the resource (Tempo worklogs for a specific Jira issue). While the resource is specific, it does not differentiate from sibling tools like tempo_get_worklogs_by_project or tempo_get_worklogs_by_user. The name and required issueId parameter clarify the scope, but no explicit differentiation from siblings is given.

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?

No guidance is provided on when to use this tool versus alternatives such as tempo_get_worklogs, tempo_get_worklogs_by_project, or tempo_search_worklogs. The description does not mention any conditions, prerequisites, or limitations that would help an agent choose this tool over its siblings.

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