SendGrid MCP Server

create_template

Create a new email template in SendGrid

Input Schema

NameRequiredDescriptionDefault
html_contentYesHTML content of the template
nameYesName of the template
plain_contentYesPlain text content of the template
subjectYesDefault subject line for the template

Input Schema (JSON Schema)

{ "properties": { "html_content": { "description": "HTML content of the template", "type": "string" }, "name": { "description": "Name of the template", "type": "string" }, "plain_content": { "description": "Plain text content of the template", "type": "string" }, "subject": { "description": "Default subject line for the template", "type": "string" } }, "required": [ "name", "subject", "html_content", "plain_content" ], "type": "object" }