Skip to main content
Glama
Mohammed-Jameal-J

NewsBlog Composer MCP

find_ai_words

Detect stock AI phrasing in a draft and report exactly where it appears, returning every flagged sentence so writers can rewrite them and confirm clean copy.

Instructions

Check a draft for stock AI phrasing and report exactly where it appears.

Returns clean (boolean), a count, and every occurrence with the sentence it sits in. Run it after humanize_text and rewrite each flagged sentence, keeping every fact, figure, name and link. Repeat until clean is true - the house standard is zero, not "fewer".

Cheaper and more precise than score_ai_text for this one job; score_ai_text also measures rhythm and gives you the number.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses the return shape (clean boolean, count, every occurrence with its sentence) and a comparative cost/precision trait versus score_ai_text. It stops short of stating any auth, rate-limit, or side-effect behavior, but the tool is an analysis read so the gap is minor.

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?

Front-loaded with the core action in the first sentence, then value-add detail about return values, workflow, and sibling comparison. Every sentence earns its place; the trailing clause is compressed and informative rather than filler.

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

Completeness5/5

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

No output schema and no annotations, yet the description covers the return payload, the workflow loop, and the stopping criterion. An agent has everything needed to invoke it and act on the result.

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 description coverage is 0% for the single required 'text' parameter, so the description must compensate. It implies the input is a draft and gives post-processing instructions about 'every fact, figure, name and link', but never states the format, size limits, or whether text is plain or markdown.

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?

States a specific verb ('Check') and resource ('a draft for stock AI phrasing') plus the output scope ('report exactly where it appears'). It explicitly distinguishes itself from the sibling score_ai_text, so an agent can tell the two apart without opening either schema.

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

Usage Guidelines5/5

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

Gives explicit sequencing ('Run it after humanize_text'), the follow-up action ('rewrite each flagged sentence'), and a stopping condition ('Repeat until clean is true'). It also names the alternative and the condition that selects this tool over score_ai_text.

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