set_custom_field_values
ActiveTool of FavCRM
declared in 1.0.0
Set or clear custom field values for a CRM entity. Values are stored as strings; pass null to clear a value.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"entityType",
"entityId",
"values"
],
"properties": {
"values": {
"type": "array",
"items": {
"type": "object",
"required": [
"definitionId",
"value"
],
"properties": {
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Value to store, or null to clear"
},
"definitionId": {
"type": "string",
"description": "Custom field definition ID"
}
}
},
"maxItems": 100,
"description": "Values to upsert"
},
"entityId": {
"type": "string",
"description": "Entity ID"
},
"entityType": {
"enum": [
"account",
"contact",
"deal",
"booking",
"ticket",
"product",
"post"
],
"type": "string",
"description": "Entity type"
}
}
}Parent server
FavCRM
https://github.com/favcrm/mcp
1/7 registries