create_file_tree
Generate or load a file tree configuration by specifying a base directory and JSON filename. Use this tool to organize and understand your codebase structure within FileScopeMCP.
Instructions
Create or load a file tree configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| baseDirectory | Yes | Base directory to scan for files | |
| filename | Yes | Name of the JSON file to store the file tree |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseDirectory": {
"description": "Base directory to scan for files",
"type": "string"
},
"filename": {
"description": "Name of the JSON file to store the file tree",
"type": "string"
}
},
"required": [
"filename",
"baseDirectory"
],
"type": "object"
}