Email Address List Parser
Parse RFC 5322 address lists with display names, quoted strings, comments, and validation.
7 parsed · 6 valid · 1 invalid · 7 final
- Invalid addresses:
- not-an-email
RFC 5322 list (6)
Alice O'Brien <alice@example.com>, bob@example.com, Carol Smith <carol@example.com>, dave@example.com, Eve <eve@subdomain.example.com>, "Frank, Jr." <frank@example.com>
Email-only (one per line)
alice@example.com bob@example.com carol@example.com dave@example.com eve@subdomain.example.com frank@example.com
JSON
[
{
"name": "Alice O'Brien",
"email": "alice@example.com",
"valid": true
},
{
"name": "",
"email": "bob@example.com",
"valid": true
},
{
"name": "Carol Smith",
"email": "carol@example.com",
"valid": true
},
{
"name": "",
"email": "dave@example.com",
"valid": true
},
{
"name": "Eve",
"email": "eve@subdomain.example.com",
"valid": true
},
{
"name": "Frank, Jr.",
"email": "frank@example.com",
"valid": true
}
]By domain
- @example.com — 5
- @subdomain.example.com — 1
</>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/email-list-parser/run \
-H "Content-Type: application/json" \
-d '{
"input": "your input here",
"dedupe": true
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/email-list-parser/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"input": "your input here",
"dedupe": true
}),
});
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_email_list_parserFull reference: developer docs · OpenAPI spec
Forms understood
alice@example.comAlice <alice@example.com>"Alice O'Brien" <alice@example.com>- Comma- or semicolon-separated lists, including newlines
- Comments in parentheses are dropped
Outputs
Structured JSON, deduped address-only list, formatted RFC 5322 list, and a breakdown by domain.
You might also like
- ANSI Escape StripperRemove ANSI color codes and terminal control sequences from CI logs or terminal captures.
- Comment Style ConverterTranslate //, #, --, ;, %, /* */, and <!-- --> comments between languages while preserving indentation.
- Diff CheckerCompare two pieces of text side-by-side with line- and word-level highlighting.
- Find & ReplaceBulk find-and-replace over text with optional regex, case sensitivity, and whole-word matching.