contentful-mcp

update_entry

Modify existing entries in Contentful by updating all field values, ensuring data consistency across environments. Requires entry ID, space ID, environment ID, and updated fields for execution.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
entryIdYes
environmentIdYesThe ID of the environment within the space, by default this will be called Mastermaster
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.

Input Schema (JSON Schema)

{ "properties": { "entryId": { "type": "string" }, "environmentId": { "default": "master", "description": "The ID of the environment within the space, by default this will be called 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" } }, "required": [ "entryId", "fields", "spaceId", "environmentId" ], "type": "object" }
ID: l2fxeaot4p