delete_file
Remove a file from the specified path using the MCP-Delete server. Supports both relative and absolute paths to ensure accurate and safe file deletion.
Instructions
Delete a file at the specified path (supports both relative and absolute paths)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file to delete (relative to working directory or absolute) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file to delete (relative to working directory or absolute)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}