contentful-mcp

delete_content_type

Remove a specific content type from a Contentful space by specifying its ID, space ID, and environment ID to streamline content model management.

Instructions

Delete a content type

Input Schema

NameRequiredDescriptionDefault
contentTypeIdYes
environmentIdYesThe ID of the environment within the space, by default this will be called Mastermaster
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" }, "environmentId": { "default": "master", "description": "The ID of the environment within the space, by default this will be called Master", "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", "spaceId", "environmentId" ], "type": "object" }
ID: l2fxeaot4p