Skip to main content
Glama
oleg-vdv

io.github.oleg-vdv/kepil

verify_journal

Verify the integrity of the action journal to detect tampering or unauthorized changes, ensuring accountability and trust in recorded activities.

Instructions

Проверить целостность журнала действий.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. 'Check integrity' implies a read-only operation, but it does not state side effects, failure behavior, or the form of the result, nor does it clarify what 'integrity' covers (missing entries, contradictions, etc.).

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?

A single sentence that states the action and object with no filler, and the key information is front-loaded. Nothing could be removed without losing meaning.

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 zero-argument tool the call itself is unambiguous, but with no output schema and no annotations the description omits what a successful versus failed verification yields and whether the operation is safe or has side effects. This is the minimum viable level for a simple integrity check.

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

Parameters4/5

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

There are zero parameters, so there is nothing for the description to explain about arguments; the schema's empty properties object already covers 100%. Baseline 4 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?

The description names a specific action ('Проверить' / check) and a specific resource ('целостность журнала действий' / integrity of the action log). No sibling tool (list_professions, order_status, etc.) overlaps with this purpose, so an agent can distinguish it immediately.

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?

There is no statement of when to run the verification, what condition should trigger it, or which sibling tool might be an alternative. The agent is left to infer the usage context from the tool name and the bare description.

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