Skip to main content
Glama
WYRE-AI

Time Doctor MCP Server

by WYRE-AI

timedoctor_get_user

Fetch a single Time Doctor user's profile and data using their unique user ID. Provides direct access to employee information for time tracking.

Instructions

Get a single Time Doctor user by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userIdYesUser ID.
companyNoCompany ID the user belongs to.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. The verb 'Get' implies a read-only, non-destructive operation, but the description does not explicitly state side-effect behavior, authentication requirements, or error handling. This is minimally transparent but not misleading.

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, front-loaded sentence with no redundant words. Every word contributes to the core purpose, making it easy for an agent to parse quickly.

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 single-resource getter, the description plus the fully documented schema is mostly sufficient for an agent to invoke the tool correctly. The only minor gap is the lack of any mention of the return value shape, which is otherwise implied by the tool name.

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 both userId and company. The description adds no additional parameter meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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 action ('Get'), a clear resource (a single Time Doctor user), and the key scope ('by ID'). This distinguishes it from list-oriented siblings like timedoctor_list_users and from other getters like timedoctor_get_company.

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 phrase 'by ID' implicitly signals that this tool should be used when a specific user ID is known, as opposed to listing users. However, there is no explicit guidance about when to prefer this over list_users or when the optional company parameter should be supplied.

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