caniemail
Click 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., "@caniemailLint this HTML for email client support"
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.
caniemail-ai-tooling
Two ways to give an AI agent working access to email client compatibility data: a skill and an MCP server. They share one core and behave identically.
Email clients are not browsers. Outlook on Windows renders with Microsoft Word, support for anything modern is patchy, and the difference between "works with a workaround" and "nobody has ever tested this" decides whether an email ships broken. caniemail.com has the data. This makes it usable by an agent.
Your client | Use | Why |
An agent that runs commands on your machine, such as Claude Code, Codex CLI, OpenClaw, Cursor, Zed | the skill | It carries the authoring rules as well as the tools, so the agent writes compatible markup in the first place instead of only checking it afterwards. |
A desktop chat app that spawns MCP servers, such as Claude Desktop | the MCP server over stdio | A desktop chat has no local shell, but it does start MCP servers on your machine. |
A hosted session, a chat in the browser or an agent running in the cloud | the MCP server over HTTP, hosted by you | A cloud session cannot reach a process on your machine. |
There is no public instance of this server, and nobody is running one for you.
What it does
Three tools, deliberately not one. A single "give me the caniemail data" tool would return 620KB of JSON, 307 features across 48 clients, and exhaust an agent's context before it did anything useful.
lint_emailis the workhorse. Give it your drafted HTML/CSS and a client list; it returns only what breaks, with every source position the feature was used at, affected clients, documented workarounds, and a link to each feature. Call it before sending. A realistic newsletter against all 48 clients costs about 10k tokens.check_feature_supportis for deciding how to build something. One feature, per-client verdicts, roughly 200 tokens instead of the whole file.search_featuresfinds slugs by keyword. Agents don't know that flexbox iscss-display-flexor that "rounded corners" iscss-border-radius.
Plus list_email_clients, though the roster is inlined into the other tools'
descriptions so it's rarely needed.
Related MCP server: mcp-emailjs
Four verdicts, not a boolean
The dataset distinguishes four states, and collapsing them produces confidently wrong advice:
Verdict | Meaning |
| Use it. |
| Will not render. Use a fallback. |
| Works with a documented workaround. The note is the actual answer. |
| No data. Not evidence of support, and not evidence against it. |
Around a sixth of the matrix is untested. Every result carries
last_test_date, which for a lint sits on the finding's entry in the features
legend, and check_feature_support adds a staleness note, because some entries
have not been retested in five years.
Install the skill
clawhub install email-compat # from ClawHub
npx skills add shbernal/caniemail-ai-tooling # or straight from this reposkills puts it in .agents/skills/ in the current project, or takes -g for
~/.agents/skills/ instead. Either way there is no install step afterwards.
The skill has no dependencies, and Node 22+ is the whole requirement.
Or point your agent at the CLI directly:
node skill/scripts/caniemail.mjs search "dark mode"
node skill/scripts/caniemail.mjs check css-display-flex --clients 'outlook.*'
node skill/scripts/caniemail.mjs lint --html draft.html --clients '*'Install the MCP server
{
"mcpServers": {
"caniemail": {
"command": "npx",
"args": ["-y", "mcp-server-caniemail"]
}
}
}Its only dependencies are the MCP SDK and zod.
Set CANIEMAIL_OFFLINE=1 to skip the network and use the bundled snapshot.
Why this is not a thin wrapper
The obvious build is a shim over the caniemail
npm package, which parses HTML/CSS and reports compatibility issues. This
started as exactly that, and stopped being one for two separate reasons.
The support resolution is wrong
Three defects, each breaking the part of the dataset an agent needs most:
untestedis reported as partial support.getSupportTypereturns'partial'for anything that is notyorn, merginga(works with a workaround) intou(never tested). 900 of its 1,637partialverdicts are actually untested, 55% of them, across 76 features. They surface as warnings with no note, which reads as "minor, proceed".Version selection sorts keys that were already in order. The upstream JSON preserves the chronological order the site displays; the package re-sorts it lexicographically and takes the last.
outlook.macoscarries["2011", "2016", "16.80"], where the newest entry sorts smallest, both lexicographically and numerically. 280 cells resolve to the wrong version, flipping verdicts in both directions.Missing data throws instead of answering. 16% of (feature, client) pairs have no stats entry, and the package raises
RangeErrorrather than treating them as untested. On realistic markup 14 of 48 clients crash, and the documented['*']glob fails unconditionally.
Every verdict is resolved here instead, against the raw dataset, with the four verdicts intact and no re-sorting. The core suite has a regression test for each.
The detection was worth owning too
For a while this project kept the package purely as a parser, taking title and
position from it and discarding every verdict it computed. That worked, and
cost 28 MB of transitive dependencies, an npm install in the skill directory,
and a 48-pass parse of every document. The package reports a feature only when
some probed client fails to fully support it, so detection had to run once per
client and be unioned.
Feature detection is now ours. One parse, no dependencies, and no email client involved in answering "what does this markup use?". Detecting titles directly finds what the old approach structurally could not:
Previously undetectable | Why |
22 universal features, among them | Every client with data rates them |
Every CSS function, | The package's function table is iterated with its key and value transposed, so it matches nothing |
Anything inside | Only a stylesheet's top level was walked, and responsive email lives in media queries |
| Dead or partial entries in the title tables |
|
|
Two further defects were fixes rather than additions. Findings inside a
<style> block were reported at their offset within the block rather than in
the document, so every one carried a wrong line number. And a single malformed
style attribute threw out of style-to-object with no try/catch above it,
killing all 48 client passes and returning a clean bill of health for the entire
email.
The package remains a devDependency, because it is the only independent
implementation of what was ported. The differential suite in
core/differential.test.mjs checks every fixture against it. Across the corpus
it finds 267 feature titles and we find 125 more, losing only two, both cases
where its own detection is wrong.
Data freshness
The dataset is fetched live from caniemail.com rather than read from a bundled
copy, because the package's copy tracks an irregular release cadence, eight
months between two recent releases, and was 68 days behind the site at time of
writing. A snapshot in core/data/caniemail.json is the offline fallback, so a
skill copied onto a machine with no network still answers, and every result
names which copy answered.
Contributing
CONTRIBUTING.md has the setup and the test targets. The rule worth knowing
before a first patch is that core/ is the only implementation, and everything
under skill/scripts/ and mcp/src/ is a byte-identical copy of it.
Scope
Rendering only, meaning whether markup displays correctly in a given client. Nothing about deliverability, SPF/DKIM/DMARC/BIMI, list management, or choosing between ESPs. Those are different problems and caniemail is not the tool for them.
License
MIT.
The caniemail dataset is a separate work, MIT, © 2019 Rémi Parmentier. It is
fetched from caniemail.com at runtime, and a snapshot is committed at
core/data/caniemail.json as the offline fallback. The caniemail npm package,
used here only as a development-time reference implementation, is MIT,
© Andrew Powell.
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.
Related MCP Connectors
Email infrastructure for AI agents — send, receive, search, and reply to email over MCP.
MCP server for e-mail testing: create disposable inboxes, wait for delivery, and extract e-mail content or links - all from your AI agent or test automation workflow. Get a free API key on https://app.zyntra.app/
Read, search, send, organize, draft and schedule email across your inboxes from any MCP client.
Send transactional email and manage domains, audiences, and broadcasts from any MCP client.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP 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.98017MIT
- AlicenseAqualityAmaintenanceAn MCP server for EmailJS that enables AI agents to send emails, validate configurations, and query email history through natural language.3162MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that lets agents check domain email authentication (SPF, DKIM, DMARC, MX) via a free API, returning grades and shareable report URLs. Also provides tools for listing paid services and partner program terms.MIT
- FlicenseNot gradedqualityCmaintenanceAn MCP server that provides email verification, returning valid, invalid, or risky status with detailed checks and metadata. It enables verifying email addresses via a simple tool interface.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/shbernal/caniemail-ai-tooling'
If you have feedback or need assistance with the MCP directory API, please join our Discord server