monica_search_contacts
Search Monica CRM contacts by name, nickname, or email to retrieve contact IDs and basic information. Use the returned IDs for detailed updates or further actions within the CRM system.
Instructions
Search Monica CRM contacts by name, nickname, or email. Returns contact IDs and basic info. Use the returned ID with other tools to get details or make updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includePartial | No | ||
limit | No | ||
page | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"includePartial": {
"type": "boolean"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"page": {
"minimum": 1,
"type": "integer"
},
"query": {
"minLength": 2,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}