codesteer-atlas
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ATLAS_INDEX_DIR | No | Path to the .code-index directory. If not provided, the server will search for a .code-index directory in the current working directory or parent directories. |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| atlas_searchA | Search code AND documents in the project's local index — your FIRST tool to find, explore or investigate anything here, before broad file reads or grep. Runs a semantic hybrid search (vector + BM25, fused via RRF) over pre-indexed chunks
of source code (classes/functions/methods) and documents (Markdown, text, JSON/YAML/
TOML). Pass natural language or exact symbols. For a structural overview instead, use
Token-efficient two-pass pattern: by default this returns metadata only (file_path,
lines, symbol, type, score). Locate first, then read the exact lines with Call directly — do NOT call |
| atlas_graph | Query the derived knowledge graph for hubs, paths, or neighborhood explanations. Call this directly when the question is about connectivity, rationale, or
centrality in the indexed workspace. It reads the derived |
| atlas_map | Retrieve a structured hierarchical tree map of classes, methods, and functions in the workspace. Provides a compact, token-efficient overview of the codebase's architecture and
logical structure. Use this to understand how the project is organized, list
classes/functions/methods within folders, or find entrypoints without retrieving
full file contents. To find a specific implementation, concept, or document instead
— or to explore/investigate any area of the project — use If the index does not exist yet, this raises an actionable error explaining how to
build it (see |
| atlas_status | Get diagnostic metadata and health status of the local vector index. Use this only for explicit diagnostics (e.g. the user asks about index health,
staleness, or which repos/languages are indexed) or to decide whether Returns:
JSON string with |
| atlas_indexA | Index (or re-index) source code and documents into the local search index. Use to build the index the first time, or to refresh it after IMPORTANT: unless the user already said what to index, call with dry_run=true first, show the candidate folders, and ASK whether to index everything or specific folders. Then call again with the chosen 'paths' (or none for the whole workspace). Incremental by default: unchanged files (by content hash) are skipped, so re-runs are fast. full=true forces a complete rebuild. full=true or empty/omitted 'paths' (whole-workspace) run asynchronously in a
background subprocess and return immediately — poll |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_status_resource | Read-only alias of the index status, exposed as an MCP resource. |
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/LuisCarlosLopes/codesteer-atlas'
If you have feedback or need assistance with the MCP directory API, please join our Discord server