MCP server exposing readability scoring (Flesch) and plain-language simplification as tools any AI agent can call on its own output. Local-only, no API key.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"readability-mcp-serv": {
"command": "npx",
"args": [
"-y",
"wedo911/readability-mcp-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add readability-mcp-serv npx -y wedo911/readability-mcp-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"readability-mcp-serv": {
"command": "npx",
"args": [
"-y",
"wedo911/readability-mcp-server"
]
}
}
}
📋 Copy