Headline Analyzer
Score a headline on length, structure, and power-word use — see what's pulling its weight.
</>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/headline-analyzer/run \
-H "Content-Type: application/json" \
-d '{
"headline": "a"
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/headline-analyzer/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"headline": "a"
}),
});
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_headline_analyzerFull reference: developer docs · OpenAPI spec
A note on scoring
Headline scores are educated guesses, not gospel. This tool checks length, word count, presence of numbers, headline type (how-to/list/question), and matches against an open list of common "power" and emotional words. The big paid tools use larger, proprietary lists and machine-learned rankers — treat this score as a sanity check, not a verdict.
You might also like
- Google SERP PreviewPreview how your title, URL, and description will appear in Google search results.
- Title & Meta Description Length CheckerCheck whether your title tag and meta description fit Google's truncation limits.
- Keyword Density CheckerAnalyse text for word, phrase, and n-gram frequency — see what your content is actually about.
- Open Graph Tag GeneratorBuild Open Graph and Twitter Card meta tags from a simple form, with a live share preview.