Text Processing
Extract all email addresses from input text, articles, web source code, or mixed content. Supports deduplication and export to JSON.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/bulk-email-extractor' \
-H 'Content-Type: application/json' \
-d '{"text":"Paste your text, article content, web source code, or any mixed content containing email addresses...","deduplicate":true,"sortBy":"none"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/bulk-email-extractor| Name | Type | Required | Description |
|---|---|---|---|
| text | textarea | Yes | — |
| deduplicate | checkbox | No | Remove duplicate email addresses from the results |
| sortBy | select | No | Choose how to sort the extracted emails |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-bulk-email-extractor": {
"name": "bulk-email-extractor",
"description": "Extract all email addresses from input text, articles, web source code, or mixed content. Supports deduplication and export to JSON.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=bulk-email-extractor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "bulk-email-extractor",
"arguments": {
"text": "Paste your text, article content, web source code, or any mixed content containing email addresses...",
"deduplicate": true,
"sortBy": "none"
}
}
}Questions or issues? Contact [email protected]