contentful-mcp

update_asset

Update an asset

Input Schema

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

Input Schema (JSON Schema)

{ "properties": { "assetId": { "type": "string" }, "description": { "type": "string" }, "environmentId": { "default": "master", "description": "The ID of the environment within the space, by default this will be called Master", "type": "string" }, "file": { "properties": { "contentType": { "type": "string" }, "fileName": { "type": "string" }, "url": { "type": "string" } }, "required": [ "url", "fileName", "contentType" ], "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" }, "title": { "type": "string" } }, "required": [ "assetId", "spaceId", "environmentId" ], "type": "object" }