delete_node
Remove documents or folders from Alfresco by specifying a node ID, with an option to delete permanently using the Alfresco MCP Server.
Instructions
Delete a document or folder from Alfresco.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
node_id | Yes | ||
permanent | No |
Input Schema (JSON Schema)
{
"properties": {
"node_id": {
"title": "Node Id",
"type": "string"
},
"permanent": {
"default": false,
"title": "Permanent",
"type": "boolean"
}
},
"required": [
"node_id"
],
"type": "object"
}