Skip to main content
Glama
AmitMatat
by AmitMatat

clokio_get_task_activity

Read-only

Retrieve the activity log for a task to track changes and review its audit trail.

Instructions

Get the activity log (audit trail) for a task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.2/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description simply restates that this is a read operation and adds no further behavioral context such as return format, ordering, or what events the audit trail includes. It does not contradict the annotations but also does not enrich them.

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 clean sentence with no filler, front-loading the operation and target. It is immediately scannable and appropriately sized for the tool's simplicity.

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

Completeness3/5

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

For a simple read-only, single-parameter tool, the description is minimally adequate. However, with no output schema, it does not describe what the activity log response contains, and it stops short of explicitly binding id to the task. The low complexity lowers the bar, but a sentence about the returned audit entries would improve completeness.

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?

The schema has a single 'id' integer with 0% description coverage. The description refers to 'a task' but never explicitly states that the id parameter is the task ID or any constraints. While this is strongly implied in a one-parameter tool, the description does not compensate for the missing schema documentation.

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 verb ('Get') and resource ('activity log (audit trail)') with a clear target ('for a task'). This distinguishes it from sibling tools like clokio_get_task, which retrieves task details rather than the audit trail.

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 on when to use this tool versus alternatives such as clokio_get_task or clokio_list_task_comments. The purpose is implied by the description, but there are no explicit exclusion criteria or alternative selection rules.

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