Skip to main content
Glama

email_templates_create

Create a new email template in Braze by defining its name, subject line, and HTML body to streamline campaign content reuse.

Instructions

Create a new email template.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesHTML body content
tagsNoTags for organization
apiKeyNoBraze REST API key
subjectYesEmail subject line
preheaderNoEmail preheader text
restEndpointNoBraze REST endpoint URL
template_nameYesTemplate name
plaintext_bodyNoPlain text body

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden, yet it says nothing about authentication requirements (apiKey/restEndpoint are visible only in the schema), whether creation is idempotent, what happens on name collision, or what the response contains. For a mutation tool with zero annotation coverage this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single short, front-loaded sentence with no wasted words. It is efficient, though the terseness borders on under-specification rather than optimal conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

A mutation tool with 8 parameters, no annotations, and no output schema needs more than a five-word sentence. Nothing about auth, error behavior, response shape, or field semantics beyond the schema is provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with all 8 parameters documented in the schema itself, so the baseline of 3 applies. The description adds no format, constraint, or default information beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (Create) and resource (email template), which distinguishes it from email_templates_list, email_templates_info, and email_templates_update in the sibling set. However, it does not explicitly differentiate itself from those siblings, so it stops short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance, no prerequisites, and no mention of alternatives such as email_templates_update for modifying an existing template. The agent must infer usage entirely from the name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools