Skip to main content
Glama

WSC - Writing Style Checker

Remove duplicate adjacent words

fix_duplicates
Read-only

Remove duplicate adjacent words (case-insensitive, including across line breaks) and return the cleaned text plus the list of words that were removed. Read-only with no side effects: the fix is returned in the response, nothing is written anywhere. Use after check_text reports duplicate words; other issue types are report-only and have no auto-fix.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesThe text to clean by removing duplicate adjacent words

TDQS

A4.7/5.0
Behavior5/5

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

Discloses behavioral details beyond annotations: case-insensitivity, handling across line breaks, and the return of cleaned text plus removed words. The 'Read-only with no side effects' statement reinforces readOnlyHint and clarifies no external writes, adding value beyond structured data.

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?

Three concise sentences, each with a distinct purpose: action, safety, and usage context. No redundant or irrelevant information, making it efficient and well-structured.

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?

For a simple tool with no output schema, the description covers all necessary aspects: purpose, return value, read-only nature, and usage context. It is complete for an agent to select and invoke correctly.

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?

The input schema fully describes the only parameter ('text') with 100% coverage. The tool description does not add extra semantic detail about the parameter itself, so the baseline score of 3 is appropriate.

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 clearly states the tool's function: 'Remove duplicate adjacent words' with specific details (case-insensitive, across line breaks). It distinguishes itself from siblings by positioning as the fix tool after check_text reports duplicates, while listing other issue types as report-only.

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?

Explicitly states when to use: 'Use after check_text reports duplicate words' and implicitly when not to use: 'other issue types are report-only and have no auto-fix.' This provides clear guidance relative to alternatives.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: check_text analyzes text for issues, fix_duplicates handles a specific correction, and list_word_lists provides configuration details. There is no overlap or confusion between analysis, fixing, and introspection.

Naming Consistency5/5

All three tool names follow a consistent verb_noun pattern: check_text, fix_duplicates, list_word_lists. This makes the API predictable and easy to navigate.

Tool Count4/5

The server uses only 3 tools, which is minimal but acceptable for a focused writing style checker. It covers core analysis plus one fix and one introspection tool, though the surface feels slightly thin.

Completeness3/5

The server provides a solid core check function and a duplicate fixer, but lacks configuration tools, file input (on the hosted server), and fixes for other issue types. These are notable gaps that limit its usefulness for full writing style management.

Resources