@codeatlas/mcp 1.1.0 → 2.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/README.md +121 -6
- package/dist/mcp-server.js +315 -143
- package/dist/webview-ui/dist/assets/index.css +1 -0
- package/dist/webview-ui/dist/assets/index.js +63 -0
- package/dist/webview-ui/dist/index.html +13 -0
- package/package.json +3 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>CodeAtlas</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeatlas/mcp",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "CodeAtlas MCP server —
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "CodeAtlas MCP server — 39 tools + 8 resources that expose live codebase architecture (routes, sequences, diffs, impact analysis, architecture violations, read-only SQL access) and AI-driven code review (per-entry-point review, evidence-gated findings, custom review guidelines, NL search) to any Model-Context-Protocol-compatible LLM client (Claude Code, Cursor, VS Code Copilot, Codex CLI, Gemini CLI, Antigravity, Continue). Self-initializes on first run — no VS Code required. Works on JS/TS, Python, Java, Kotlin, Go, Rust, Ruby, PHP, Swift, Dart, C#, C/C++. Node.js ≥18 only required on the host; the indexed workspace can be in any supported language.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
7
7
|
"model-context-protocol",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"dist/sql-wasm.wasm",
|
|
62
62
|
"dist/tree-sitter.wasm",
|
|
63
63
|
"dist/grammars/**",
|
|
64
|
+
"dist/webview-ui/**",
|
|
64
65
|
"README.md",
|
|
65
66
|
"LICENSE.md"
|
|
66
67
|
],
|