> Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

---
title: "deleteCMSItem"
sidebarTitle: "deleteCMSItem"
description: "Deletes an item from a CMS collection. This permanently removes the item and cannot be undone. The item ID must exist in the specified collection."
tag: "TOOL"
tagColor: "purple"
gridGap: 30
---

<Aside full>
  <RequestExample>
    ```json lines=false
    {
      "method": "tools/call",
      "params": {
        "name": "deleteCMSItem",
        "arguments": {
          "collectionId": "string",
          "itemId": "string"
        }
      }
    }
    ```
  </RequestExample>
</Aside>

<MCPTool {...{"name":"deleteCMSItem","description":"Deletes an item from a CMS collection.\n\nThis permanently removes the item and cannot be undone.\nThe item ID must exist in the specified collection.","inputSchema":{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","properties":{"collectionId":{"type":"string","description":"The ID of the CMS collection containing the item"},"itemId":{"type":"string","description":"The ID of the item to delete"}},"required":["collectionId","itemId"],"additionalProperties":false},"annotations":{"destructiveHint":true}}} />
