Skip to main content
Glama
andreasd083

amazing-marvin-complete-mcp

get_time_tracks

Read-only

Retrieve time-tracking history for up to 100 specified tasks. Use this to review and analyze logged time per task.

Instructions

Get time-tracking history for the given tasks (the source of truth, max 100 per call).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idsYesUp to 100 task IDs

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description does not need to repeat safety. The phrase 'source of truth' adds some behavioral context, but the 'max 100 per call' largely duplicates the schema's 'Up to 100 task IDs' rather than disclosing new behavior.

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?

A single sentence that front-loads the core purpose and packs the key constraints ('source of truth', 'max 100 per call') without wasted words. Every element earns its place.

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 a simple read-only tool with one well-documented parameter and an output schema, the description includes the essential constraints. It omits edge-case behavior for exceeding 100 IDs, but that is minor given the overall clarity.

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%, with the only parameter already documented as 'Up to 100 task IDs'. The description's 'max 100 per call' add no new meaning beyond what the schema provides, so the baseline 3 applies.

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 identifies the operation ('Get time-tracking history') and the resource ('for the given tasks'), and adds the qualifier 'source of truth' to distinguish it from other tracking-related tools. It does not explicitly name or contrast siblings, so it stops short of a 5.

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 description implies usage when you need authoritative time-tracking history for specific tasks, and the 'max 100 per call' constraint gives a practical boundary. However, it provides no explicit guidance on when not to use it or which sibling tool to choose instead.

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