SendGrid MCP Server

remove_contacts_from_list

Remove contacts from a SendGrid list without deleting them

Input Schema

NameRequiredDescriptionDefault
emailsYesArray of email addresses to remove from the list
list_idYesID of the contact list

Input Schema (JSON Schema)

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