contentful-mcp

update_content_type

Update an existing content type

Input Schema

NameRequiredDescriptionDefault
contentTypeIdYes
descriptionNo
displayFieldNo
environmentIdYesThe ID of the environment within the space, by default this will be called Mastermaster
fieldsYes
nameYes
spaceIdYesThe ID of the Contentful space. This must be the space's ID, not its name, ask for this ID if it's unclear.

Input Schema (JSON Schema)

{ "properties": { "contentTypeId": { "type": "string" }, "description": { "type": "string" }, "displayField": { "type": "string" }, "environmentId": { "default": "master", "description": "The ID of the environment within the space, by default this will be called Master", "type": "string" }, "fields": { "items": { "type": "object" }, "type": "array" }, "name": { "type": "string" }, "spaceId": { "description": "The ID of the Contentful space. This must be the space's ID, not its name, ask for this ID if it's unclear.", "type": "string" } }, "required": [ "contentTypeId", "name", "fields", "spaceId", "environmentId" ], "type": "object" }