CodeAtlas MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CODEATLAS_PROJECT_DIR | No | Force a specific project directory |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_projectsA | List all projects that have been analyzed by CodeAtlas. Returns project names, paths, and last analysis time. |
| get_project_structureA | Get all modules, classes, functions, and variables in the analyzed project. Returns entity type, name, file path, and line number. |
| get_dependenciesB | Get import/call/containment/implements relationships between entities. Shows how modules, classes, and functions are connected. |
| get_insightsA | Get AI-generated code insights including refactoring suggestions, security issues, and maintainability analysis. |
| search_entitiesB | Search for functions, classes, modules, or variables by name. Supports fuzzy matching. |
| get_file_entitiesC | Get all entities (classes, functions, variables) defined in a specific file. |
| generate_system_flowB | Auto-generate a Mermaid flowchart diagram showing how modules, classes, and functions connect in the system. Returns a Mermaid diagram string that AI can read to understand the full system flow without reading every file. |
| sync_system_memoryA | Create or update the .agents/memory/ folder with auto-generated system documentation. This folder serves as AI's 'long-term memory' — it persists between conversations. After calling this, AI in any future conversation can read these files to understand the full system flow without re-analyzing. Call this after completing any code changes. |
| trace_feature_flowA | Trace the complete flow of a feature through the codebase. Given a keyword (e.g. 'login', 'payment', 'crawl'), finds all related files, classes, and functions, then orders them by dependency chain to show the execution flow. This helps AI understand which files to read when working on a feature. |
| generate_feature_flow_diagramA | Generate a Mermaid diagram showing the EXECUTION FLOW of a feature. Unlike generate_system_flow (which shows module imports), this traces the actual call chain: entry point → controller → service → model → database. Given a keyword, it finds all related functions and classes, then builds a flowchart or sequence diagram showing how they call each other at runtime. This is the best tool for understanding HOW a feature works step-by-step. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/giauphan/codeatlas-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server