email.templated/mcp
Create and manage Templated email templates from any MCP client - bring your own model.
Open source Repository Open in the app JSON README (API)
About
Create and manage Templated email templates from any MCP client - bring your own model.
Details
- Kind
- MCP servers
- Topic
- Communication
- Publisher
- email.templated
- Origin
- official
- Category
- ferramentas
- Transport
- http
- Version
- 0.1.1
- Added
- 2026-08-29 03:01:32
- Updated
- 2026-09-13 03:10:10
- Origin id
email.templated/mcp
README
# @templatedemails/mcp
MCP server for [Templated](https://templated.email) — create and manage email
templates from Claude Desktop, Claude Code, or any MCP-capable client.
**Bring your own model.** Your AI authors the email; Templated stores, renders,
and exports it. Template creation via MCP never consumes Templated AI-generation
credits — only your plan's template storage cap applies. The one metered tool is
`generate_image`, which runs on Templated's image model and uses your plan's
AI image credits.
## Setup
1. In Templated, go to **Integrations → API Keys** and create a key
(`tmpl_sk_...`). The key is scoped to one account.
2. Add the server to your MCP client.
### Claude Desktop / Claude Code (stdio)
```json
{
"mcpServers": {
"templated": {
"command": "npx",
"args": ["-y", "@templatedemails/mcp"],
"env": { "TEMPLATED_API_KEY": "tmpl_sk_..." }
}
}
}
```
### Remote (no install)
Add a custom connector pointing at `https://app.templated.email/api/mcp` with
the header `Authorization: Bearer tmpl_sk_...`.
## Environment
| Variable | Required | Description |
|----------|----------|-------------|
| `TEMPLATED_API_KEY` | Yes | Your `tmpl_sk_` API key |
| `TEMPLATED_API_URL` | No | API base (default `https://app.templated.email/api`) |
| `TEMPLATED_ACCOUNT_SLUG` | No | Skip account auto-resolution |
## Tools
| Tool | Description |
|------|-------------|
| `list_templates` | List the account's templates (summaries) |
| `get_template` | Fetch one template with content |
| `create_template` | Create a template from email HTML you author — no AI credits consumed |
| `update_template` | Patch name / description / HTML / status |
| `duplicate_template` | Clone a template |
| `generate_image` | AI image → hosted URL to embed (uses the account's AI image credits; paid plans) |
| `export_html` | Get the send-ready HTML + thumbnail |
## Resources & Prompts
- `templated://guides/authoring-html` — email-safe HTML rules (read before creating)
- `templated://brand-kit` — the account's brand colors/fonts/tone
- `templated://templates` — current template list
- Prompt `create-sales-preview` — build a personalized preview email for a prospect
## Docs
Full documentation: https://developer.templated.email