Skip to content
BEAD

Readability Checker

Score your text with Flesch–Kincaid, ARI, Coleman–Liau, and Gunning Fog.

</>Use this tool programmaticallycurl · JavaScript · MCP

Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.

curl
curl https://api.b-e-a-d.com/tools/readability-checker/run \
  -H "Content-Type: application/json" \
  -d '{
  "text": "hello world"
}'
JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/readability-checker/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "text": "hello world"
}),
});
const data = await res.json();
console.log(data.result);
MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
  "mcpServers": {
    "bead": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
    }
  }
}

# Then ask Claude to call:
mcp__bead__bead_readability_checker

Full reference: developer docs · OpenAPI spec

What these scores mean

  • Flesch Reading Ease — 0–100. Higher is easier. 60–70 is the sweet spot for general web copy.
  • Flesch–Kincaid Grade — US grade level. Most consumer copy targets 7–9.
  • ARI & Coleman–Liau — grade levels that use characters instead of syllables (less affected by syllable-counting errors).
  • Gunning Fog — emphasises long words. Lower is friendlier.

Syllable counts use a vowel-group heuristic — accurate enough for scoring, but not for, say, poetry.

You might also like