dump_project_understanding
Analyze and extract comprehensive project insights, including entities, relationships, patterns, and style conventions, from a specified root directory using SourceSage's MCP server.
Instructions
Dump understanding of an entire project at once.
This tool provides a comprehensive dump of all knowledge related to a project, including all entities, relationships, patterns, and style conventions.
Args: project_path: Path to the project root directory include_observations: Whether to include detailed observations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_observations | No | ||
project_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"include_observations": {
"default": false,
"title": "Include Observations",
"type": "boolean"
},
"project_path": {
"title": "Project Path",
"type": "string"
}
},
"required": [
"project_path"
],
"title": "dump_project_understandingArguments",
"type": "object"
}