select_file_tree
Identify and load a specific file tree from a JSON file to analyze code structure and dependencies using the FileScopeMCP server.
Instructions
Select an existing file tree to work with
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | Name of the JSON file containing the file tree |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filename": {
"description": "Name of the JSON file containing the file tree",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}