Skip to main content
Glama
WYRE-AI

Time Doctor MCP Server

by WYRE-AI

timedoctor_get_company

Retrieve a single Time Doctor company's details using its company ID. Returns company information for the specified identifier.

Instructions

Get a single Time Doctor company by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
companyIdYesCompany ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior2/5

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

With no annotations, the description carries full disclosure burden. It signals read-only 'get' behavior and that one company is returned, but it does not mention behavior for not-found/error cases, required scopes, or response structure.

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?

One short sentence that front-loads the action and resource, with no repeated information from the schema. Every word 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 single-parameter lookup tool with no annotations and no output schema, the description is close to sufficient: it identifies the input and the intended result. Missing details are limited to error behavior and output shape, which are minor for such a simple operation.

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 covers 100% of the single parameter, and the description's 'by ID' only restates that the companyId is the identifier. No additional format, validation, or edge-case semantics are added beyond the schema.

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?

States exactly what it does: retrieves a single Time Doctor company, and the qualifiers 'single' and 'by ID' differentiate it from timedoctor_list_companies and other get_* siblings. The resource and identifier are both explicit.

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 only implies usage: an agent should call it when it has a companyId and needs one company, versus listing companies. It does not explicitly name timedoctor_list_companies or state when not to use it, so guidance is left to inference.

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