google_drive_delete_file
Remove a file from Google Drive by specifying its ID, with the option to permanently delete it or move it to trash. Simplifies file management within the Google MCP ecosystem.
Instructions
Delete a file from Google Drive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileId | Yes | ID of the file to delete | |
permanently | No | Whether to permanently delete the file or move it to trash |
Input Schema (JSON Schema)
{
"properties": {
"fileId": {
"description": "ID of the file to delete",
"type": "string"
},
"permanently": {
"description": "Whether to permanently delete the file or move it to trash",
"type": "boolean"
}
},
"required": [
"fileId"
],
"type": "object"
}