EmailTemplateMCP
FreeNot checkedGenerates email templates via Claude, turning a description (with optional tone and brand name) into a subject, plain-text, and HTML email body.
About
Generates email templates via Claude, turning a description (with optional tone and brand name) into a subject, plain-text, and HTML email body.
README
A minimal MCP server that generates email templates with Claude — one tool, one file, deployed as a single AWS Lambda function behind a public Function URL. No framework, no MCP SDK dependency: the JSON-RPC dispatch is ~130 lines of plain JavaScript.
This is the reference implementation used in the "Build an MCP server from scratch" video series.
What it does
Exposes a single tool, create_email_template, which takes a description of an email's purpose
(plus optional tone and brand name) and returns a subject line, a plain-text body, and an
inline-styled HTML body — generated by Claude in one call.
{
"name": "create_email_template",
"arguments": {
"description": "welcome email for new SaaS signups",
"tone": "friendly",
"brand_name": "Acme"
}
}
Why no MCP SDK?
MCP isn't a library you install — it's a protocol: JSON-RPC 2.0 over HTTP. This project implements
initialize, tools/list, and tools/call directly in the Lambda handler, so there's nothing to
learn beyond reading index.mjs top to bottom. The only real dependency is the
Anthropic SDK, used to actually generate
the email content.
Output shape is enforced server-side via Anthropic's structured output
(output_config.format.json_schema), so there's no fragile hand-rolled JSON parsing of the model's
response.
Why a Function URL, not API Gateway?
Generating an email is a real model call — it can take 10-20+ seconds. API Gateway's HTTP API has a hard, non-configurable 30-second integration timeout. A Lambda Function URL has no such ceiling; the only limit is the function's own configured timeout (set here to ~2 minutes).
Deploying
Option A — one command, via AWS SAM
template.yaml in this repo defines the whole thing — the function, its Function URL, and both
environment variables — so you don't have to click through the console at all.
sam build
sam deploy --guided
--guided walks you through stack name, region, and the two secret parameters (AnthropicApiKey,
McpApiKey — both NoEcho, never printed or stored in plain text in the template) on first run,
then remembers your answers in samconfig.toml for future deploys. On success it prints the
Function URL as an output.
Requires the AWS SAM CLI and valid AWS credentials configured locally.
Option B — manual, via the Lambda console
npm install— pulls in the Anthropic SDK.- Zip the folder's contents (not the folder itself) —
index.mjs,node_modules,package.json,package-lock.jsonshould sit at the zip's top level. - In the Lambda console: Create function → author from scratch → Node.js 22+ → upload the zip.
- Configuration → General configuration: raise Timeout (e.g. 2 min) and Memory (e.g. 256 MB) — the defaults (3s / 128MB) aren't enough for a real generation call.
- Configuration → Environment variables:
ANTHROPIC_API_KEY— from the Anthropic console.MCP_API_KEY— a secret you invent (any long random string). This is the shared secret every caller must present.ANTHROPIC_MODEL— optional, defaults toclaude-opus-5.
- Configuration → Function URL: create one with Auth type
NONE. This doesn't mean unauthenticated — it means AWS isn't checking IAM signatures.MCP_API_KEYis the actual gate, checked on every request inside the handler.
Authentication
Every request must include the shared secret, either as a header:
x-api-key: <MCP_API_KEY>
or a query parameter:
?key=<MCP_API_KEY>
Requests without a valid key get a 401 before anything else runs — including before any call to
Anthropic, so a bad key never costs you a generation.
Testing it directly
# List tools
curl -s https://<your-function-url> \
-H "x-api-key: <MCP_API_KEY>" \
-H "content-type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# Call the tool
curl -s https://<your-function-url> \
-H "x-api-key: <MCP_API_KEY>" \
-H "content-type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"create_email_template","arguments":{"description":"welcome email for new signups"}}}'
Connecting an MCP client
For Claude Code:
claude mcp add --transport http email-template https://<your-function-url> \
--header "x-api-key: <MCP_API_KEY>"
Any MCP-compatible client that supports plain header auth over Streamable HTTP works the same way.
Project structure
index.mjs — the entire server: tool definition, Anthropic call, JSON-RPC dispatch
package.json — the one runtime dependency
Security note
MCP_API_KEY and ANTHROPIC_API_KEY are both plain environment variables — never hardcode them in
index.mjs. If you've ever shown this function's configuration on screen (a demo, a screen
recording), rotate both values afterward.
Installing EmailTemplateMCP
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/theaidrill/EmailTemplateMCPFAQ
Is EmailTemplateMCP MCP free?
Yes, EmailTemplateMCP MCP is free — one-click install via Unyly at no cost.
Does EmailTemplateMCP need an API key?
No, EmailTemplateMCP runs without API keys or environment variables.
Is EmailTemplateMCP hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install EmailTemplateMCP in Claude Desktop, Claude Code or Cursor?
Open EmailTemplateMCP on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Gmail
Read, send and search emails from Claude
by GoogleSlack
Send, search and summarize Slack messages
by SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Klavis AI
Open Source MCP Infra. Hosted MCP servers and MCP clients on Slack and Discord.
Work90210/APIFold
Turn any REST API into a hosted MCP server. 18 free public servers (GitHub, Stripe, Slack, OpenAI, Notion, and more) — no setup required, bring your own API key
by Work90210arikusi/deepseek-mcp-server
MCP server for DeepSeek AI with chat, reasoning, multi-turn sessions, function calling, thinking mode, and cost tracking.
by arikusihashgraph-online/hashnet-mcp-js
MCP server for the Registry Broker. Discover, register, and chat with AI agents on the Hashgraph network.
by hashgraph-onlineprofullstack/mcp-server
A comprehensive MCP server aggregating 20+ tools including SEO optimization, document conversion, domain lookup, email validation, QR generation, weather data,
by profullstackWayStation-ai/mcp
Seamlessly and securely connect Claude Desktop and other MCP hosts to your favorite apps (Notion, Slack, Monday, Airtable, etc.). Takes less than 90 secs.
by waystation-aiCompare EmailTemplateMCP with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All communication MCPs
