neuron_add_to_contact_list
ActiveTool of io.github.conquext/neuron
declared in 1.0.0
Add one or more contacts to a list by contact ID or phone number. Phone numbers without existing contacts are auto-created as minimal contact records.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"idOrSlug",
"entries"
],
"properties": {
"entries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"phone": {
"type": "string",
"description": "Phone number in E.164 format (e.g., +2348012345678). Creates a new contact if no match exists."
},
"contactId": {
"type": "string",
"description": "Unique identifier (UUID) of an existing contact"
}
},
"additionalProperties": false
},
"description": "Array of contacts to add, each identified by contactId or phone number"
},
"idOrSlug": {
"type": "string",
"description": "Unique identifier (UUID) or URL-friendly slug of the target contact list"
}
},
"additionalProperties": false
}Parent server
io.github.conquext/neuron
https://github.com/conquext/neuron-mcp-server
1/7 registries