Getting Started
The Writing Style Checker (WSC) detects 8 types of writing issues: weasel words, passive voice, duplicate words, long sentences, nominalizations, hedging language, filler adverbs, and AI tells.
Use it online
The fastest way to use WSC is the web editor. Paste your text and see issues highlighted in real time. All analysis runs in your browser — your text is never sent to a server.
Use from the command line
npx wsc-cli check "**/*.md"
Use in CI
# .github/workflows/writing.yml
- uses: theserverlessdev/wsc@master
with:
files: "**/*.md"
Use via AI assistants (MCP)
Add WSC to Claude Code with a single command:
claude mcp add writing-style-checker --transport http https://wsc.theserverless.dev/mcp
Or add to Claude Desktop / other MCP clients:
{
"mcpServers": {
"writing-style-checker": {
"type": "url",
"url": "https://wsc.theserverless.dev/mcp"
}
}
}
Integrate via HTTP API
curl -X POST https://wsc.theserverless.dev/api/check \
-H "Content-Type: application/json" \
-d '{"text":"The code was written very quickly."}'
