> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seamless.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Templates

> Email template CRUD MCP tools. Requires Connect access.

Manage email templates. Requires [Connect access](/mcp/access-control). Use `seamless://templates/variables` for merge tags like `{first_name}`.

| Tool              | Description                            | Risk          | Schema                                |
| ----------------- | -------------------------------------- | ------------- | ------------------------------------- |
| `list_templates`  | List templates or get one by ID.       | `read`        | [#list\_templates](#list_templates)   |
| `create_template` | Create template with subject and body. | `write`       | [#create\_template](#create_template) |
| `update_template` | Update name, subject, or body.         | `write`       | [#update\_template](#update_template) |
| `delete_template` | Permanently delete a template.         | `destructive` | [#delete\_template](#delete_template) |

## create\_template

### Example

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "create_template",
    "arguments": {
      "name": "Meeting request",
      "subject": "Quick intro, {first_name}",
      "body": "<p>Hi {first_name},</p>"
    }
  },
  "id": 1
}
```
