SendGrid MCP Server

add_contacts_to_list

Add contacts to an existing SendGrid list

Input Schema

NameRequiredDescriptionDefault
emailsYesArray of email addresses to add to the list
list_idYesID of the contact list

Input Schema (JSON Schema)

{ "properties": { "emails": { "description": "Array of email addresses to add to the list", "items": { "type": "string" }, "type": "array" }, "list_id": { "description": "ID of the contact list", "type": "string" } }, "required": [ "list_id", "emails" ], "type": "object" }