email-on-acid-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@email-on-acid-mcpcreate an email test for my newsletter"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Email on Acid MCP Server
An MCP server exposing every documented Email on Acid API v5 request as a tool — 24 tools across authentication, email client lists, email (rendering) testing, and spam testing.
Setup
Create a virtual environment and install dependencies (Python 3.12):
python3.12 -m venv .venv
.venv/bin/pip install -r requirements.txtCredentials
The server authenticates with HTTP Basic auth (API key as username, account password as password) and resolves credentials from EOA_API_KEY / EOA_ACCOUNT_PASSWORD environment variables — including values from a .env file in this directory, which is loaded automatically at startup. Copy .env.example to .env and fill in your key:
cp .env.example .env
# then edit .env:
# EOA_API_KEY=your_api_key
# EOA_ACCOUNT_PASSWORD=your_account_password (omit if your account has none)Register with Claude Code
claude mcp add email-on-acid \
-- /absolute/path/to/email-on-acid-mcp/.venv/bin/python \
/absolute/path/to/email-on-acid-mcp/server.pyRegister with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"email-on-acid": {
"command": "/absolute/path/to/email-on-acid-mcp/.venv/bin/python",
"args": ["/absolute/path/to/email-on-acid-mcp/server.py"]
}
}
}Tools
Authentication
Tool | API request |
|
|
Email client lists
Tool | API request |
|
|
|
|
|
|
Email testing
Tool | API request |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Spam testing
Tool | API request |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Testing
.venv/bin/python test_mcp_server.pyThe test suite spawns the server over stdio (no separate server start needed) and offers three modes: read-only, write-only, or full. Test IDs are auto-discovered from the account or created during the run — no saved configuration is needed. Write tests default to sandbox mode (no test credits consumed) and prefix subjects with MCPTEST_; anything that costs a credit or quota (real email test with spam component, real spam test, screenshot reprocessing) asks for confirmation first, and created tests are deleted in a confirmed cleanup step at the end. Answering yes to all prompts in full mode exercises all 24 tools.
Notes
API errors are returned as
{"http_status": ..., "error": {...}}rather than raised, so the calling agent can see the failure details.Test results are retained by Email on Acid for 90 days.
search_email_tests/search_spam_testsusefrom_date/to_dateparameter names (mapped to the API'sfrom/to) becausefromis reserved in Python.Enterprise-only parameters (
reference_id,customer_id,headersx-headers) are included but will be ignored or rejected on non-enterprise plans.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KnakLabs/email-on-acid-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server