Skip to main content
Glama
WYRE-AI

Time Doctor MCP Server

by WYRE-AI

timedoctor_get_task

Fetch a single Time Doctor task by supplying the task ID and company ID, giving you the task details needed for tracking and analysis.

Instructions

Get a single Time Doctor task by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskIdYesTask ID.
companyYesCompany ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only indicates a read operation via 'Get' and does not mention response format, error behavior, authentication needs, rate limits, or any side effects.

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?

The description is a single clear sentence with no fluff or unnecessary clauses. It is front-loaded with the core purpose, though 'Time Doctor' is somewhat redundant with the tool name.

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?

The description and schema together are enough for basic invocation, but with no annotations and no output schema, there is no indication of what the successful response contains or what happens on failure. For a simple get-by-ID tool, this is minimal but acceptable with clear gaps.

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 taskId and company are already documented. The description adds little beyond the schema other than reinforcing that the task is fetched by ID, which is the baseline expectation for a schema-heavy low-complexity definition.

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 states a specific verb ('Get'), a clear resource ('a single Time Doctor task'), and the lookup method ('by ID'). The word 'single' differentiates it from the sibling timedoctor_list_tasks without requiring schema inspection.

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 the tool should be used when the caller already knows the task ID)Skip it does not explicitly say when to prefer it over list_tasks or another sibling, nor does it state exclusions. Usage is inferable but not directly guided.

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