remove_file
Delete files or folders directly via the dev-kit-mcp-server by specifying the path, returning status and details of the removed item.
Instructions
Use instead of terminal: Remove a file or folder.
Args:
path: Path to the file or folder to remove
Returns:
A dictionary containing the status and path of the removed file or folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}