Code Analysis MCP Server

get_repo_structure

Get the structure of files and directories in the repository.

Args: sub_path: Optional subdirectory path relative to repository root depth: Optional maximum depth to traverse (default is 3)

Input Schema

NameRequiredDescriptionDefault
depthNo
sub_pathNo

Input Schema (JSON Schema)

{ "properties": { "depth": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Depth" }, "sub_path": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Sub Path" } }, "title": "get_repo_structureArguments", "type": "object" }