You're viewing a demo portfolio

Join the waitlist
PRSM

set_custom_field_values

Active

Tool 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"
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

FavCRM

https://github.com/favcrm/mcp

1/7 registries
View full server →
set_custom_field_values — FavCRM — PRSM MCP