Skip to main content
Glama
KnakLabs

email-on-acid-mcp

Official
by KnakLabs

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.txt

Related MCP server: PostStack MCP Server

Credentials

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.py

Register 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

verify_auth

GET /auth

Email client lists

Tool

API request

get_available_email_clients

GET /email/clients

get_default_email_clients

GET /email/clients/default

set_default_email_clients

PUT /email/clients/default

Email testing

Tool

API request

create_email_test

POST /email/tests

get_email_tests

GET /email/tests

search_email_tests

GET /email/tests?<query>

get_email_test_info

GET /email/tests/{test_id}

delete_email_test

DELETE /email/tests/{test_id}

get_email_test_results

GET /email/tests/{test_id}/results[/{client_id}]

reprocess_email_test_screenshots

PUT /email/tests/{test_id}/results/reprocess

get_email_test_content

GET /email/tests/{test_id}/content

get_email_test_content_inline_css

GET /email/tests/{test_id}/content/inlinecss

get_email_test_content_text_only

GET /email/tests/{test_id}/content/textonly

get_email_test_spam_results

GET /email/tests/{test_id}/spam/results

get_email_test_spam_seedlist

GET /email/tests/{test_id}/spam/seedlist

Spam testing

Tool

API request

get_spam_clients

GET /spam/clients

create_spam_test

POST /spam/tests

get_spam_tests

GET /spam/tests

search_spam_tests

GET /spam/tests?<query>

get_spam_test_results

GET /spam/tests/{test_id}

delete_spam_test

DELETE /spam/tests/{test_id}

get_spam_test_seedlist

GET /spam/tests/{test_id}/seedlist

reserve_spam_seedlist

GET /spam/seedlist

Testing

.venv/bin/python test_mcp_server.py

The 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_tests use from_date / to_date parameter names (mapped to the API's from / to) because from is reserved in Python.

  • Enterprise-only parameters (reference_id, customer_id, headers x-headers) are included but will be ignored or rejected on non-enterprise plans.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    MCP server for email compatibility analysis. Analyze, preview, diff, and fix HTML emails across 15 email clients — plus capture real screenshots and create shareable links with an optional API key.
    9
    249
    6
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    An MCP server for the PostStack email API that enables AI assistants to send transactional emails, manage contacts, handle inbound email threads, and perform deliverability checks through 84 curated tools.
    84
    20
    1
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    MCP server for Mailtarget that exposes tools to discover and call management API endpoints and send transactional emails via the Transmission API.
    7
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Deprecated MCP server wrapper for ms365-email-cli that exposes Microsoft 365 email operations (list, read, send, reply, search, etc.) as MCP tools. Use the main ms365-email-cli package instead, which now includes built-in MCP server support.
    10
    30
    ISC

View all related MCP servers

Related MCP Connectors

  • 34 production API tools over one hosted MCP endpoint.

  • Emailable MCP — wraps the Emailable email verification API (emailable.com)

  • A basic MCP server to operate on the Postman API.

View all MCP Connectors

Latest Blog Posts

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