@codeatlas/mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,18 @@
1
+ # End-User License Agreement (EULA)
2
+
3
+ Copyright (c) 2026 codeatlas.live team. All rights reserved.
4
+
5
+ This software and associated documentation files (the "Software") are proprietary and confidential.
6
+
7
+ ## 1. License Restrictions
8
+ You shall not, and shall not permit any third party to:
9
+ - Copy, modify, or create derivative works of the Software without express written permission from the codeatlas.live team;
10
+ - Decompile, reverse engineer, or disassemble the Software;
11
+ - Distribute, sell, lease, rent, lend, or sublicense the Software to any third party;
12
+ - Remove or alter any proprietary notices, labels, or marks on the Software.
13
+
14
+ ## 2. Ownership
15
+ The Software is licensed, not sold. The codeatlas.live team retains all right, title, and interest in and to the Software, including all related intellectual property rights.
16
+
17
+ ## 3. No Warranty
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # @codeatlas/mcp
2
+
3
+ The CodeAtlas Model Context Protocol (MCP) server — 25 tools that expose live codebase architecture to any MCP-compatible LLM client (Claude Code, Cursor, VS Code Copilot, Codex CLI, Gemini CLI, Antigravity, Continue, etc.).
4
+
5
+ ## Quick start (Claude Code)
6
+ ```bash
7
+ claude mcp add codeatlas -- npx -y @codeatlas/mcp $(pwd)
8
+ ```
9
+
10
+ ## Quick start (Cursor / VS Code Copilot agent / Gemini / Codex)
11
+
12
+ Add to your client's MCP config (see your client docs for the right file):
13
+ ```json
14
+ {
15
+ "mcpServers": {
16
+ "codeatlas": {
17
+ "command": "npx",
18
+ "args": ["-y", "@codeatlas/mcp", "/absolute/path/to/your/repo"]
19
+ }
20
+ }
21
+ }
22
+ ```
23
+
24
+ ## Workspace languages supported
25
+
26
+ Python, Java, Kotlin, Go, Rust, Ruby, PHP, Swift, Dart, C#, plus JS/TS. **Only the host machine needs Node.js ≥18** — the indexed workspace can be in any of these.
27
+
28
+ ## What it exposes (25 tools)
29
+
30
+ See [the main CodeAtlas README](https://github.com/vamsikk7/codeatlas-live#ai-assistant-integration-mcp) for the full tool list and token-economics numbers.
Binary file