Skip to main content
Glama

WSC - Writing Style Checker

Check text for writing style issues

check_text
Read-only

Analyze text for writing style issues: weasel words, passive voice, duplicate words, long sentences, nominalizations, hedging, filler adverbs, and research-cited AI tells. Read-only and stateless — text is analyzed in memory on the hosted server and never stored. Returns a plain-text report with each issue's line and column, the matched text, surrounding context, and the reason for AI tells; texts over 100,000 characters return an error message. This hosted server has no filesystem access — the wsc-mcp npm package adds a check_file tool for local files. It only reports issues — to auto-remove duplicate words, follow up with fix_duplicates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesThe text to analyze for writing style issues
configNoOptional config to enable/disable detectors or add/remove word-list entries; same schema as .wscrc.json (https://wsc.theserverless.dev/schema.json)
formatNoSet to "markdown" to mask code blocks, inline code, tables, and headings so they are not linted as prose; default "plain" lints everything

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description details privacy (never stored), return format (plain-text report with line/column, context, reason for AI tells), an error condition (>100,000 characters), and lack of filesystem access. This adds rich behavioral context beyond the structured annotations.

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?

The description is compact yet information-dense, with the core purpose front-loaded. Each sentence adds value: behavior, privacy, return details, limits, alternatives, and tool relationship. No words are wasted.

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?

Given the absence of an output schema, the description fully explains return format and error behavior. It also covers side effects (none), scope (hosted server, no filesystem), and alternative tools. This is complete for the tool's complexity and 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?

Schema coverage is 100% so baseline is 3, but the description adds a meaningful constraint not present in the schema: texts over 100,000 characters return an error. This clarifies the text parameter's limits. It also reinforces the config's purpose and format's effect without redundancy.

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 a specific verb ('Analyze text for writing style issues') and enumerates the exact issue types (weasel words, passive voice, etc.), distinguishing it from sibling tools. It also explicitly contrasts with fix_duplicates by noting this tool only reports issues.

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?

It gives clear usage context: read-only, stateless, works on in-memory text, and explicitly points to fix_duplicates for automatic removal and to a separate check_file tool for local files. This provides direct alternatives and exclusion guidance.

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