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.
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"
}
}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.
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).
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.
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.
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.
# 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"}}}'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.
index.mjs — the entire server: tool definition, Anthropic call, JSON-RPC dispatch
package.json — the one runtime dependency
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.