
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
email-playbook-mcp
Advanced tools
MCP server and CLI exposing HTML email template rules for AI: Outlook/MSO, VML buttons, RTL, responsive tables, Gmail clipping, dark mode, and placeholders.
Stop AI models from generating broken HTML email. This MCP server + CLI feeds them the patterns that actually render in Outlook 2007+, Gmail, and Apple Mail — drawn from the HTML Email Playbook.
Without it, your model invents flex and grid (no email client supports those), hardcodes table widths that overflow on mobile, forgets the VML fallback for Outlook buttons, and makes up footer disclaimers that weren't in your design.
With it, the model calls structured tools to pull the exact patterns from the playbook and composes emails using those, instead of guessing from training data.
🔒 No email permissions, no inbox access. This is a knowledge MCP — it returns playbook rules and HTML patterns. It never reads your mail, sends mail, or asks for Gmail/Outlook/SMTP credentials. Confusable with inbox-integration MCPs but it's a different category entirely.
# Global install (standard)
npm install -g email-playbook-mcp
# Or run on demand without installing
npx -y email-playbook-mcp@latest
@modelcontextprotocol/sdk), nothing else.Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"email-playbook": {
"command": "email-playbook-mcp"
}
}
}
Restart Claude Desktop. The playbook tools appear in the model's tool list. Ask it to build an email and it'll call them automatically.
For an image-to-email or "build me a welcome email" prompt, the model typically calls:
1. list_categories ← orient
2. get_playbook_rules({ category: "ai-generation" }) ← absolute rules first
3. get_playbook_rules({ category: "compatibility" }) ← responsive + Outlook
4. list_components → get_component({ name: "buttons" }) ← components it needs
5. compose final HTML using those exact patterns
You don't write that prompt by hand — the model orients itself via the tool descriptions.
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"email-playbook": {
"command": "email-playbook-mcp"
}
}
}
Cline / Continue / Windsurf and other MCP-aware clients use the same shape — point a command entry at email-playbook-mcp.
The same package ships a second binary for direct query + scripting:
$ email-playbook get-component buttons | jq '{name, slots, requires_vml}'
{
"name": "buttons",
"slots": ["text", "url", "background_color", "text_color", "width_px", "height_px"],
"requires_vml": true
}
Other commands: list-categories, list-components, get-rules <category>. Help text is generated from the bundled spec at runtime, never stale. Run email-playbook --help.
Run without installing globally:
npx -y -p email-playbook-mcp email-playbook list-categories
| Tool | Returns |
|---|---|
list_categories | The 4 rule categories with page counts |
get_playbook_rules({ category }) | All rules in one category (text + code) |
list_components | All 6 components with metadata |
get_component({ name }) | One component: HTML pattern, slots, VML/responsive flags |
Components live in a separate dimension — use list_components / get_component, not get_playbook_rules.
| Surface | Count | Covers |
|---|---|---|
structure (rules) | 5 | Doctype, head, body container, header, body, footer |
compatibility (rules) | 3 | Outlook MSO, RTL languages, responsive |
production (rules) | 4 | Gmail 102KB clip, dark mode, preheader, bulletproof buttons |
ai-generation (rules) | 7 | Absolute rules, asset policy, content fidelity, image placeholders, link tokens, output format, handoff checklist |
| Components | 6 | Buttons, spacing, images, inline icons, background images, text |
The ai-generation category is the one to fetch first for image-to-email tasks. It encodes rules that override training-data instincts — use {{cta_url}} not https://example.com, reproduce only what's in the source, use placehold.co for every image, return HTML only.
No install? Point any JSON-RPC 2.0 client at https://docs.osamahassouna.com/api/mcp. Same tools, same content, no auth.
curl -X POST https://docs.osamahassouna.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
MIT © Osama Hassouna
mcp/ directory)FAQs
MCP server and CLI exposing HTML email template rules for AI: Outlook/MSO, VML buttons, RTL, responsive tables, Gmail clipping, dark mode, and placeholders.
The npm package email-playbook-mcp receives a total of 49 weekly downloads. As such, email-playbook-mcp popularity was classified as not popular.
We found that email-playbook-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.