TalkHuman
STDIOSTREAMABLE HTTPMCP server that detects and eliminates AI slop from text using research-based analysis
MCP server that detects and eliminates AI slop from text using research-based analysis
Tools to eliminate AI slop from text
Model Context Protocol server with tools to detect and eliminate AI slop from text. Based on expert annotations from NLP writers and philosophers analyzing AI-generated text patterns.
Low-quality AI text characterized by:
Research foundation: arXiv:2509.19163v1
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{ "mcpServers": { "talkhuman": { "url": "https://talkhuman-mcp.vercel.app/api/mcp" } } }
{ "mcpServers": { "talkhuman": { "command": "node", "args": [ "/path/to/talkhuman-mcp/dist/index.js" ] } } }
Add to your MCP configuration:
{ "mcpServers": { "talkhuman": { "url": "https://talkhuman-mcp.vercel.app/api/mcp" } } }
Restart your client after configuration!
get_human_writing_rulesGet comprehensive anti-slop writing rules tailored to your context.
Parameters:
context (optional): Writing type (e.g., "technical blog", "email", "docs")Example:
Get writing rules for a technical blog post
check_for_slopAnalyze text for AI slop indicators across three dimensions.
Parameters:
text (required): The text to analyzeExample:
Check this for slop: "In today's digital landscape, it's important to
note that we should leverage cutting-edge solutions to deliver a
seamless user experience..."
Returns:
⚠️ AI Slop Analysis
- Overused Phrases: Found AI clichés - landscape, it's important to note,
  leverage, cutting-edge, seamless
- Verbosity: Overly long sentences (avg 28.5 words)
- Word Complexity: Unnecessarily formal - "utilize" → "use"
Recommendation: Revise to be more concise, direct, and natural.
get_slop_examplesGet categorized examples of AI slop patterns to avoid.
Parameters:
category (optional): "phrases", "structure", "tone", or "all"Example:
Show me phrase examples to avoid
Text analyzed across three weighted dimensions:
git clone https://github.com/Kalypsokichu-code/talkhuman-mcp cd talkhuman-mcp npm install npm run build
npm run build - Compile TypeScriptnpm run dev - Watch mode for developmentnpm start - Run stdio server locallynpx ultracite check - Lint checknpx ultracite fix - Auto-fix issuesnpm run build npm start # Server runs on stdio, test with MCP inspector: npx @modelcontextprotocol/inspector node dist/index.js
vercel dev # Visit http://localhost:3000
talkhuman-mcp/
├── api/                    # Vercel serverless functions
│   ├── mcp.ts             # HTTP MCP endpoint (Streamable HTTP)
│   ├── index.ts           # API info page
│   ├── check.ts           # Slop detection API
│   ├── rules.ts           # Rules API
│   └── examples.ts        # Examples API
├── src/                    # Core MCP server
│   ├── index.ts           # stdio transport (Claude Desktop)
│   └── rules.ts           # Anti-slop taxonomy
├── public/
│   └── index.html         # Homepage/docs
└── dist/                   # Compiled output
stdio Transport (Local/Claude Desktop):
dist/index.jsStreamable HTTP Transport (Vercel/Web):
/api/mcp@modelcontextprotocol/sdk v1.19+npm install vercel deploy --prod
Your MCP endpoint: https://your-project.vercel.app/api/mcp
None required! Server works out of the box.
"Check my email draft for AI slop patterns"
"Get writing rules for professional documentation"
"Show me examples of phrases to avoid in blog posts"
"Analyze this paragraph and suggest improvements:
[paste text]"
"Get human writing rules for casual Twitter posts,
then help me write a thread"
# Check text for slop curl -X POST https://talkhuman-mcp.vercel.app/api/check \ -H "Content-Type: application/json" \ -d '{"text": "Your text here"}' # Get writing rules curl https://talkhuman-mcp.vercel.app/api/rules?context=email
Based on expert annotations from:
Key Findings:
Full paper: arXiv:2509.19163
Contributions welcome! See CONTRIBUTING.md for guidelines.
Quick checklist:
npx ultracite fix before committingMIT License - see LICENSE for details
Live Demo: talkhuman-mcp.vercel.app
MCP Endpoint: https://talkhuman-mcp.vercel.app/api/mcp
GitHub: Kalypsokichu-code/talkhuman-mcp