AiDD MCP Server

tree_sitter_map

Build a tree-sitter based structural map of source code files. This tool analyzes code structure to identify classes, functions, and methods. Only analyzes files within the allowed directory. Useful for code analysis and understanding project structure. Example: Enter '.' to analyze all source files in current directory, or 'src' to analyze all files in the src directory.

Input Schema

NameRequiredDescriptionDefault
pathYesRoot directory to analyze

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Root directory to analyze", "type": "string" } }, "required": [ "path" ], "type": "object" }