Back to Browse

Email Spam Tester MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Test an email before it goes out: a disposable address, 41 checks with RFC citations, a fix plan.

About

Test an email before it goes out: a disposable address, 41 checks with RFC citations, a fix plan.

Remote endpoints: streamable-http: https://email-spam-tester.com/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-serg-tanichev-email-spam-tester": {
      "url": "https://email-spam-tester.com/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Email Spam Tester MCP server

Email Spam Tester is a free, independent email deliverability testing tool built by Serhii Tanichev. This repository is the client side of its MCP server: how to connect an agent to it, what the four tools do, and how to read what they return. There is nothing to install on a server; the MCP endpoint is hosted with the tool.

The service exposes an MCP server at https://email-spam-tester.com/mcp over streamable HTTP. No key, no account. Four tools:

ToolWhat it does
get_test_address(lang="en")Reserves a disposable address and returns it with the slug and the report URL. lang decides the language of the fix plan a person sees on the report page.
wait_for_report(slug, timeout_seconds=150)Blocks until the analysis is done and returns a summary: scores, the failing and warning checks with their evidence, the fix plan. Nothing to poll and no sleep loop to get wrong.
get_report(slug)Reads an existing report without waiting.
get_message_source(slug)The message as delivered: headers in wire order, both bodies, the raw source.

The agent's job in between is to send a real message to the address, from the platform that will send the campaign. Half the checks read headers the sending platform adds, so a copy sent from a laptop says little about it.

Claude Desktop

Add the server to claude_desktop_config.json (see claude-desktop.json for the whole file):

{
  "mcpServers": {
    "email-spam-tester": {
      "url": "https://email-spam-tester.com/mcp"
    }
  }
}

Clients that do not speak streamable HTTP directly can bridge it with mcp-remote:

{
  "mcpServers": {
    "email-spam-tester": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://email-spam-tester.com/mcp"]
    }
  }
}

Claude Code

claude mcp add --transport http email-spam-tester https://email-spam-tester.com/mcp

Reading what comes back

  • The per-check lines the tools return are in English whatever lang was set to; lang decides what the person opening the report URL sees.
  • A check status of skip is not a pass: the check did not apply. error means it could not run and is left out of the score.
  • complete: false means something could not be checked. Treat the score as optimistic until it is true.
  • The slug is the capability: whoever holds it can read the report, including the subject, the sender, the bounce address and the full source. Do not test somebody else's mail without asking.

The same instructions, written for an agent to read before it starts, are in SKILL.md, and in the project repository serg-tanichev/email-spam-tester.

Where it is listed

Files

  • claude-desktop.json: a complete Claude Desktop configuration with the server added.
  • server.json: the manifest in the MCP registry format, for registries and directories that read one.

License

MIT, see LICENSE. The license covers this repository, not the service.

Reviews

No reviews yet

Be the first to review this server!