Documentation version: 2026-09-18.3
Canonical: https://docs.creator.gg/tools/email_templates_list.md

# email_templates_list

List reusable email templates or folders. Use include=all to discover folders, then folderId to browse their contents. Follow offset pagination; folders are not templates.

## Execution

Interface: Creators MCP tool at https://mcp.creator.gg/mcp. Do not construct a REST route from the tool name. The connection selects the workspace.

Effect: read-only or navigation handoff; no marketing mutation.

## Behavior and limits

Maximum limit 20. Folders have type=folder and are not templates; use include=all and folderId to traverse.

## Example arguments

Illustrative placeholders only. Replace IDs with values from this workspace, resolve sender/content/recipients, recalculate dates, and generate a new requestId for a new action.

```json
{
  "include": "all",
  "limit": 20,
  "offset": 0
}
```

## Input schema

Generated from the current executable Creators contract. Runtime rules in Behavior and limits and the linked guide also apply; JSON Schema alone cannot express all cross-field constraints.

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "limit": {
      "default": 20,
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    },
    "offset": {
      "default": 0,
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "search": {
      "type": "string",
      "maxLength": 300
    },
    "folderId": {
      "description": "Use a folder ID returned by this workspace, or root for the top level.",
      "type": "string",
      "minLength": 1,
      "maxLength": 300,
      "pattern": "^[A-Za-z0-9_-]+$"
    },
    "include": {
      "default": "templates",
      "type": "string",
      "enum": [
        "templates",
        "folders",
        "all"
      ]
    }
  },
  "additionalProperties": false
}
```

## Result interpretation

Results use status and message, with operation-specific data and optional link, code, nextAction, and operationId. Data may retain different list/record envelopes. A completed read or accepted send is not proof of delivery/publication. An unknown result must be reconciled. HUMAN_ACTION_REQUIRED returns instructions without performing the action.

## Related guides

- [email](https://docs.creator.gg/guides/email.md)
- [Recovery](https://docs.creator.gg/guides/recovery.md)
- [Unsubscribe and content](https://docs.creator.gg/guides/email-content.md)
- [Readiness](https://docs.creator.gg/guides/readiness.md)
