contentful-mcp

update_entry

Update an existing entry, always send all field values, also the fields values that have not been updated

Input Schema

NameRequiredDescriptionDefault
entryIdYes
environmentIdNomaster
fieldsYes
spaceIdYesThe ID of the Contentful space. This must be the space's ID, not its name, ask for this ID if it's unclear.
spaceNameNoHuman-readable name of the space. If provided, it will be resolved to a spaceId.

Input Schema (JSON Schema)

{ "properties": { "entryId": { "type": "string" }, "environmentId": { "default": "master", "type": "string" }, "fields": { "type": "object" }, "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" }, "spaceName": { "description": "Human-readable name of the space. If provided, it will be resolved to a spaceId.", "type": "string" } }, "required": [ "spaceId", "entryId", "fields" ], "type": "object" }