sendgrid_add_or_update_contacts
ActiveTool of io.usefulapi/sendgrid
declared in 1.0.0
UPSERTS marketing contacts (creates new ones, updates existing ones by email) and optionally adds them to lists. This is an ASYNC job — returns { job_id } you can poll. SendGrid: PUT /v3/marketing/contacts.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"contacts"
],
"properties": {
"contacts": {
"type": "array",
"items": {
"type": "object",
"required": [
"email"
],
"properties": {
"email": {
"type": "string",
"description": "Contact email address (required — the primary identifier for the contact)."
},
"last_name": {
"type": "string",
"description": "Contact last name."
},
"first_name": {
"type": "string",
"description": "Contact first name."
}
},
"description": "A marketing contact. `email` is required; first_name/last_name are optional. Any additional keys are passed through as custom-field values (use the custom field's id or reserved name as the key).",
"additionalProperties": {}
},
"minItems": 1,
"description": "Contacts to add or update (each needs an `email`; custom fields pass through)."
},
"list_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "List ids to add these contacts to."
}
}
}Parent server
io.usefulapi/sendgrid
https://github.com/m190/usefulapi-mcp
1/7 registries