delete_file_tree
Remove a file tree configuration by specifying the JSON file name, simplifying file management and cleanup in your codebase within the FileScopeMCP environment.
Instructions
Delete a file tree configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | Name of the JSON file to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filename": {
"description": "Name of the JSON file to delete",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}