SendGrid MCP Server

add_contact

Add a contact to your SendGrid marketing contacts

Input Schema

NameRequiredDescriptionDefault
custom_fieldsNoCustom field values (optional)
emailYesContact email address
first_nameNoContact first name (optional)
last_nameNoContact last name (optional)

Input Schema (JSON Schema)

{ "properties": { "custom_fields": { "description": "Custom field values (optional)", "type": "object" }, "email": { "description": "Contact email address", "type": "string" }, "first_name": { "description": "Contact first name (optional)", "type": "string" }, "last_name": { "description": "Contact last name (optional)", "type": "string" } }, "required": [ "email" ], "type": "object" }