Skip to main content
Glama
ivanherula
by ivanherula

delete_time_entry

Deletes a Clockify time entry by ID. Use it to remove incorrect or unwanted tracked hours.

Instructions

Delete a time entry by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entryIdYesTime entry ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

C2.9/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 behavioral burden. It implies a mutation but never states whether deletion is permanent or reversible, whether it requires an unsent/unsubmitted entry, what happens to the timer if this entry is running, or what is returned. This is a significant gap for a destructive operation.

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?

A single tight sentence with the verb and identifier front-loaded and no filler. It is efficient, though there is almost nothing beyond the bare minimum to structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive, no-annotation, no-output-schema tool, the description omits the critical facts an agent needs: irreversibility, permission or status prerequisites, and side effects on timers or reports. Only the parameter name is fully covered by structured data.

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 coverage is 100% and the single entryId parameter is already documented as 'Time entry ID,' so the description adds nothing beyond it. Baseline 3 is appropriate when the schema does the heavy lifting.

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?

States a specific verb (Delete) and resource (time entry), with the lookup key (ID) named. It is clear apart from create_time_entry and update_time_entry by the verb alone, but it does not explicitly differentiate why to delete versus stop a timer or update an entry.

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

Usage Guidelines2/5

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

No guidance on when deletion is appropriate versus the sibling update_time_entry or submit_for_approval, and no note about prerequisites (e.g. entry must not be submitted/approved) or consequences. The agent gets no when-to-use or when-not-to-use signal.

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