delete_file
Remove specified files or directories by providing the path, enabling efficient file management within the Code MCP Server environment.
Instructions
Delete a file or directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to delete |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to delete",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}