Skip to main content
Glama

Writing Style Checker

Server Details

Prose linter + AI-slop detector: weasel words, passive voice, hedging, and research-cited AI tells

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.8/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: check_text analyzes text for issues, fix_duplicates removes duplicate words, and list_word_lists provides configuration info. There is no overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: check_text, fix_duplicates, list_word_lists. No deviations or mixed conventions.

Tool Count5/5

Three tools is appropriate for a focused writing style checker: one for analysis, one for a specific fix, and one for configuration reference. Not too few or too many for the scope.

Completeness5/5

The tool surface covers the core workflow: analyze text for multiple issue types, fix duplicate words (the only auto-fixable issue), and inspect word lists. No obvious gaps remain for the stated purpose.

Available Tools

3 tools
check_textCheck text for writing style issuesA
Read-only
Inspect

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.

ParametersJSON 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
Behavior5/5

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

The description elaborates beyond the readOnlyHint annotation: it states the tool is stateless, text is analyzed in memory on the hosted server and never stored, and it returns a detailed plain-text report. It also discloses that the hosted server has no filesystem access and mentions the error condition for large texts. No contradictions with 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 concise at just four sentences. It is front-loaded with the main purpose, then lists specific issues, followed by behavioral details, error handling, and references to related tools. Every sentence serves a clear function without redundancy.

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?

Despite the absence of an output schema, the description fully describes the return format (plain-text report with line/column, matched text, context, and reason for AI tells). It also covers input constraints, behavior (stateless, in-memory), error conditions, and relationships to other tools. Given the tool's moderate complexity, this is comprehensive.

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 input schema already provides 100% coverage for all three parameters. The description adds value by specifying a behavioral constraint on the text parameter (100k character limit causing an error), which is not in the schema. It does not elaborate on config or format beyond what the schema offers, but the added constraint justifies a slightly above-baseline score.

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 begins by explicitly stating the tool's purpose: analyze text for writing style issues. It lists specific categories of issues (weasel words, passive voice, etc.), clearly distinguishing it from sibling tools like fix_duplicates (for fixing) and check_file (for local files).

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?

The description provides clear guidance on when to use this tool: it is read-only and stateless, appropriate for analysis only. It mentions that for local files, check_file should be used, and for auto-removing duplicates, fix_duplicates is the follow-up. It also notes a constraint: texts over 100,000 characters return an error.

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

fix_duplicatesRemove duplicate adjacent wordsA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesThe text to clean by removing duplicate adjacent words
Behavior4/5

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

Annotations already set readOnlyHint=true. The description adds context: 'Read-only with no side effects: the fix is returned in the response, nothing is written anywhere.' This reinforces the read-only nature and explains practical implications. No contradiction.

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?

Two sentences clearly convey purpose, scope, output, safety, and usage context. Every word adds value; no redundant information.

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 tool's simplicity (one parameter, no output schema), the description adequately explains what the tool does, what it returns (cleaned text + list of removed words), and when to use it. No gaps.

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 description coverage is 100% for the single parameter 'text'. The description adds behavioral details ('case-insensitive, including across line breaks') that help the agent understand input handling, going beyond the schema's generic 'text to clean'.

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 action: 'Remove duplicate adjacent words' with specific scope (case-insensitive, across line breaks) and output. It also distinguishes from siblings by indicating it is used after check_text reports duplicates, and that other issues are 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?

Explicit usage guidance: 'Use after check_text reports duplicate words' and exclusion: 'other issue types are report-only and have no auto-fix.' This clearly tells the agent when to invoke this versus alternatives.

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

list_word_listsList detector word listsA
Read-only
Inspect

Return every detector word/phrase list with its entry count, config key, and sample entries, plus a link to the full browsable library. Read-only, takes no parameters, and returns the same catalog for a given release. Use it to see what the detectors match before tuning a config for check_text; not needed for ordinary checking.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already provide readOnlyHint=true. Description adds that it is idempotent ('returns same catalog for a given release') and takes no parameters. No contradictions.

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?

Two sentences, no wasted words. Front-loaded with purpose and return content, followed by usage guidance. Every sentence earns its place.

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 tool with no parameters and no output schema, the description is fully complete. It explains what is returned (lists with counts, keys, samples, link), guarantees idempotence, and gives usage 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?

No parameters, schema coverage 100%. Description explicitly states 'takes no parameters', adding clarity beyond the empty schema. Baseline for 0 params is 4.

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 it returns detector word lists with specific details (entry count, config key, sample entries, link). Verb is 'Return', resource is 'detector word/phrase list'. Distinguishes from sibling tools like 'check_text' and 'fix_duplicates'.

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 ('before tuning config for check_text') and when not needed ('not needed for ordinary checking'). Provides clear context for appropriate invocation.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources