update_custom_field
ActiveTool of FavCRM
declared in 1.0.0
Update a custom field definition label, type, options, required flag, or sort order.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"definitionId"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
},
"description": "Allowed values for select/multiselect fields"
},
"fieldType": {
"enum": [
"text",
"number",
"date",
"select",
"multiselect",
"boolean",
"url",
"email",
"phone"
],
"type": "string",
"description": "Field type"
},
"sortOrder": {
"type": "number",
"description": "Display order"
},
"fieldLabel": {
"type": "string",
"minLength": 1,
"description": "Human-readable label"
},
"isRequired": {
"type": "boolean",
"description": "Whether this field is required"
},
"definitionId": {
"type": "string",
"description": "Custom field definition ID"
}
}
}Parent server
FavCRM
https://github.com/favcrm/mcp
1/7 registries