@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 +18 -0
- package/README.md +30 -0
- package/dist/grammars/tree-sitter-c.wasm +0 -0
- package/dist/grammars/tree-sitter-c_sharp.wasm +0 -0
- package/dist/grammars/tree-sitter-cpp.wasm +0 -0
- package/dist/grammars/tree-sitter-dart.wasm +0 -0
- package/dist/grammars/tree-sitter-go.wasm +0 -0
- package/dist/grammars/tree-sitter-java.wasm +0 -0
- package/dist/grammars/tree-sitter-javascript.wasm +0 -0
- package/dist/grammars/tree-sitter-kotlin.wasm +0 -0
- package/dist/grammars/tree-sitter-php.wasm +0 -0
- package/dist/grammars/tree-sitter-python.wasm +0 -0
- package/dist/grammars/tree-sitter-ruby.wasm +0 -0
- package/dist/grammars/tree-sitter-rust.wasm +0 -0
- package/dist/grammars/tree-sitter-swift.wasm +0 -0
- package/dist/grammars/tree-sitter-typescript.wasm +0 -0
- package/dist/mcp-server.js +344 -0
- package/dist/sql-wasm.wasm +0 -0
- package/dist/tree-sitter.wasm +0 -0
- package/package.json +43 -0
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codeatlas/mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CodeAtlas MCP server — 25 tools that expose live codebase architecture (routes, sequences, diffs, impact analysis, architecture violations, SQL access) to any Model-Context-Protocol-compatible LLM client. Works on Python, Java, Go, Kotlin, Rust, Ruby, PHP, Swift, Dart, C#, JS/TS workspaces. Node.js ≥18 only required on the runner; the indexed codebase can be in any supported language.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"claude",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"gemini",
|
|
12
|
+
"llm",
|
|
13
|
+
"code-intelligence",
|
|
14
|
+
"code-analysis",
|
|
15
|
+
"ast",
|
|
16
|
+
"architecture",
|
|
17
|
+
"diagrams"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://codeatlas.live",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/vamsikk7/codeatlas-live"
|
|
23
|
+
},
|
|
24
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
25
|
+
"bin": {
|
|
26
|
+
"codeatlas-mcp": "./dist/mcp-server.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist/mcp-server.js",
|
|
30
|
+
"dist/sql-wasm.wasm",
|
|
31
|
+
"dist/tree-sitter.wasm",
|
|
32
|
+
"dist/grammars/**",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE.md"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=18"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "node ../scripts/build-mcp-package.js",
|
|
41
|
+
"prepare": "npm run build"
|
|
42
|
+
}
|
|
43
|
+
}
|