EmailTemplateMCP
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., "@EmailTemplateMCPCreate a friendly welcome email for Acme new signups"
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.
EmailTemplateMCP
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"
}
}Related MCP server: Email MCP Server
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 dependencySecurity 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.
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 Servers
- AlicenseAqualityDmaintenanceEnables seamless email management through natural language conversations with Claude. Supports searching, reading, and sending emails securely with Gmail and other email providers.Last updated4MIT
- Alicense-qualityDmaintenanceIntegrates Gmail with Claude Desktop to fetch unread emails, generate AI-powered draft replies with customizable tone and style guides, and manage your inbox through natural language commands.Last updatedMIT
- Alicense-qualityCmaintenanceEnables searching and summarizing emails across multiple Gmail accounts simultaneously through Claude.Last updated1MIT
- Alicense-qualityDmaintenanceEnables Claude Code to create HubSpot marketing email drafts from Markdown and Word documents with automatic image handling and brand guidelines.Last updated1MIT
Related MCP Connectors
Email for AI agents — send, receive as a webhook, manage domains, templates, routing.
Visual email & layout builder that turns AI assistants into a Temway authoring studio.
AI email inbox and sending tools with attachments, search, live events, and webhooks.
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/theaidrill/EmailTemplateMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server