delete-asset
Remove a file from Cloudinary by specifying its asset ID or public ID. This tool integrates with the Cloudinary MCP server to manage and delete assets programmatically via AI assistants.
Instructions
Delete a file (asset) from Cloudinary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assetId | No | The asset ID of the asset to delete | |
publicId | No | The public ID of the asset to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assetId": {
"description": "The asset ID of the asset to delete",
"type": "string"
},
"publicId": {
"description": "The public ID of the asset to delete",
"type": "string"
}
},
"type": "object"
}