analyze_project
Analyze project structure and dependencies with customizable scan depth for detailed insights, supporting context-aware progress reporting in codebase analysis.
Instructions
Analyze overall project structure.
Args:
project: Project name
scan_depth: Depth of detailed analysis (higher is slower)
ctx: Optional MCP context for progress reporting
Returns:
Project analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ctx | No | ||
project | Yes | ||
scan_depth | No |
Input Schema (JSON Schema)
{
"properties": {
"ctx": {
"anyOf": [
{},
{
"type": "null"
}
],
"default": null,
"title": "Ctx"
},
"project": {
"title": "Project",
"type": "string"
},
"scan_depth": {
"default": 3,
"title": "Scan Depth",
"type": "integer"
}
},
"required": [
"project"
],
"title": "analyze_projectArguments",
"type": "object"
}