Skip to main content
Glama
AmitMatat
by AmitMatat

clokio_clock_out

Clock an employee out by providing their employee code to record the end of their work shift.

Instructions

Clock an employee out.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pinNo
employee_codeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

C2.7/5.0
Behavior2/5

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

The description restates the basic mutation already implied by readOnlyHint=false and adds no behavioral context such as what time is recorded, whether the employee must have an open shift, or what failure cases exist. It does not contradict the annotations, but it also does not go beyond them.

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 sentence with no filler, front-loading the core action immediately. It is concise and easy to parse, though it sacrifices useful details that could make it more helpful.

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?

With no output schema and no parameter discussion, the description does not explain how pin is used, what preconditions apply, or what the tool returns. It is enough to identify the tool's purpose but not enough to invoke it correctly and confidently.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description never mentions employee_code or pin. The word 'employee' maps loosely to employee_code, but the optional pin remains unexplained, leaving its role and necessity ambiguous.

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?

The phrase 'Clock an employee out' identifies a specific action and target, clearly distinguishing it from sibling tools like clokio_clock_in, clokio_break_start, and clokio_break_end. It is direct and unambiguous, though it does not add scope or return details.

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 is given for when to use this tool versus alternatives. It does not mention that the employee should currently be clocked in, nor does it contrast with clock_in or break_end, leaving the agent to infer usage context.

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