Skip to main content
Glama

tempo_search_timesheet_approval_logs

Read-only

Search timesheet approval audit logs to track approvals, rejections, and reviewer actions. Filter by user or update date and paginate results.

Instructions

Search timesheet approval audit logs. Requires appropriate Tempo permissions; results may contain PII (account ids, reviewer actions). Paginated via nextPageToken from the previous response.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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
updatedFromNoLogs updated from this date/time (YYYY-MM-DD or YYYY-MM-DDTHH:mm:ssZ, within past 2 years)
nextPageTokenNoPage token from the previous response metadata
userAccountIdsNoFilter by Atlassian account ids of the timesheet users

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.1

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description is consistent with that. It adds valuable context beyond the annotation: permission requirements, a PII warning (account ids, reviewer actions), and the pagination behavior via nextPageToken. This gives an agent meaningful operational expectations that structured fields alone would not.

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?

Three short sentences with zero waste: purpose first, then safety/permission caveats, then pagination mechanics. Each sentence carries distinct, necessary information and nothing is repeated from the schema.

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?

For an optional-parameter search tool with no output schema, the description covers the key operational concerns: permission prerequisites, PII sensitivity, and pagination. The view parameter's schema text fills in response-shape details. It stops short of describing the returned log entry fields or any sort ordering, but the essentials an agent needs before invoking are present.

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 the schema already documents all five parameters, including a rich explanation of the view enum and date formatting for updatedFrom. The description adds only the pagination behavior already reflected in nextPageToken's schema text, so it stays at the baseline rather than adding new parameter-level 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 opens with a specific verb+resource ('Search timesheet approval audit logs'), and the word 'audit logs' clearly separates this tool from the approval-lifecycle siblings such as tempo_get_timesheet_approval_status, tempo_get_timesheet_approvals_waiting, and tempo_approve_timesheet. An agent can distinguish the historical audit-trail intent from current-status or mutation tools without opening any schema.

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

Usage Guidelines3/5

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

The 'audit logs' framing implies this is for historical investigation rather than checking current approval state, but no alternative sibling is named and no when-to-use vs. when-not-to-use condition is stated. The PII and permission warnings hint at appropriate contexts, but the agent must infer the routing versus the many approval-status siblings.

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