list_projects_tool
Retrieve a comprehensive list of all registered projects with detailed information. Enhances code analysis by providing structured project data for efficient context management.
Instructions
List all registered projects.
Returns:
List of project information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The handler and registration for the list_projects_tool. This function is decorated with @mcp_server.tool() which registers it with the MCP server and implements the tool logic by returning the list of registered projects from the project_registry.@mcp_server.tool() def list_projects_tool() -> List[Dict[str, Any]]: """List all registered projects. Returns: List of project information """ return project_registry.list_projects()