contentstack-mcp

by darekrossman

update_global_field

Modify an existing global field by updating its title and schema structure. Specify the field's UID and define new schema properties such as display name, data type, and metadata.

Instructions

Updates an existing global field identified by its UID. Allows modification of title and schema.

Input Schema

NameRequiredDescriptionDefault
schemaNoUpdated schema fields defining the global field structure. Each field object should include properties like: - display_name: Field display name - uid: Unique identifier for the field - data_type: Type of data (text, number, boolean, file, etc.) - field_metadata: Additional metadata for the field - multiple: Whether field accepts multiple values - mandatory: Whether field is required - unique: Whether field values must be unique
titleNoNew global field title
uidYesGlobal field UID to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "schema": { "description": "Updated schema fields defining the global field structure. Each field object should include properties like:\n- display_name: Field display name\n- uid: Unique identifier for the field\n- data_type: Type of data (text, number, boolean, file, etc.)\n- field_metadata: Additional metadata for the field\n- multiple: Whether field accepts multiple values\n- mandatory: Whether field is required\n- unique: Whether field values must be unique", "items": { "additionalProperties": true, "properties": {}, "type": "object" }, "type": "array" }, "title": { "description": "New global field title", "type": "string" }, "uid": { "description": "Global field UID to update", "type": "string" } }, "required": [ "uid" ], "type": "object" }
ID: c4avzr3qnm