Skip to main content
Glama

Check the words

check_copy
Read-onlyIdempotent

Check a folder or pasted text for copy that exaggerates, fabricates proof, or misattributes claims. Each finding explains the problem, the source, and the recommended rewrite.

Instructions

Run the copy and honesty rules over a folder, or over a block of text pasted straight in.

Benefit-speak, the "not just X, it's Y" cadence, em dashes in short interface copy, fabricated precision, invented proof, unverified attributions, and claims that cannot be true or false.

Pass either directory or text. Everything it finds carries the same four answers as a full review: what, why, who says so, and the better move.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNoA block of copy to check directly, without saving it anywhere first.
ignoreNoFolder or file names to skip. Defaults cover node_modules, .git, dist, build and friends.
directoryNoFolder to read. Every .html file in it is checked.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
fixNo
whyNo
toolYesWhich tool produced this.
countsNo
sourceNo
statusYespass = checked and clean. fail = checked and found problems. skipped = nothing was measured. error = the tool could not run.
problemNo
findingsNo
headlineYesOne sentence verdict, safe to show a non-technical user.
rules_runNo
error_codeNoSet only when status is "error".
files_readNo
not_checkedNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A3.8/5.0
Behavior4/5

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

Even though annotations already declare read-only and idempotent behavior, the description adds useful behavioral context: the specific issue categories it checks and the output contract of 'what, why, who says so, and the better move.' No contradiction with the annotations exists.

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 compact and front-loaded, with the core action first, then the rule list, then the parameter/output contract. It is slightly redundant because 'Run ... over a folder, or over a block of text' is restated in 'Pass either directory or text,' which prevents a top score.

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?

With an output schema and sufficient annotations present, the description covers the important operational aspects: input modes, the rule set, and the result format. The main gap is the implicit relationship to sibling tools like check_honesty and review_site, which affects complete context.

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?

The schema already documents all three parameters with full coverage, so the baseline is a 3. The description adds meaning beyond the schema by stating 'Pass either directory or text,' which conveys that these are alternative input modes rather than interchangeable or combinable fields.

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 opening line states a specific action and resource: 'Run the copy and honesty rules over a folder, or over a block of text pasted straight in.' It also lists concrete examples of what the rules catch. However, it does not differentiate check_copy from the sibling check_honesty, which overlaps with the 'honesty rules' wording.

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

Usage Guidelines3/5

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

The description implies when to use the tool by describing the folder/pasted-text modes and the rule categories, but it never names alternatives or says when not to use it. Given the sibling list includes check_honesty)Skip, an explicit contrast would have made the guidance stronger.

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