Skip to main content
Glama

Stop timer

timer_stop

Stop an active timer to log time worked, returning the duration and entry ID for record-keeping.

Instructions

Stop the running timer and log it as a time entry. Returns the duration and the entry id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoOptional note stored with the entry

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.20.0

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description must convey side effects. It states that the timer is stopped and an entry is logged, and that duration and entry id are returned. However, it does not mention error handling for when no timer is running or potential idempotency issues.

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?

Two concise sentences with no redundant wording. The main action is front-loaded, and the return value is stated clearly.

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 tool with one parameter and no output schema, the description covers the main behavior and result. It lacks explicit preconditions (e.g., a timer must be running) but that is implied and acceptable for this scope.

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?

The only parameter 'note' is fully described in the schema, and the description repeats it as 'Optional note stored with the entry'. Schema coverage is 100%, so baseline 3 applies.

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?

Clearly states the action 'Stop' and the resource 'running timer', and adds context that it logs the time entry. This distinguishes it from timer_start and timer_status, and aligns with sibling tools like entry_add.

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

Usage Guidelines4/5

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

The use case is implied: use when there is a running timer to end and record. It does not explicitly mention alternatives or when not to use, but the action is straightforward and the intent is clear.

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

Install Server

Other Tools