codebase-analyzer-mcp 1.0.0 → 1.0.1
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/.claude-plugin/marketplace.json +7 -7
- package/.claude-plugin/plugin.json +3 -3
- package/LICENSE +1 -1
- package/README.md +43 -39
- package/dist/cli/index.js +5 -5
- package/dist/mcp/server.js +5 -5
- package/package.json +5 -5
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
2
|
+
"name": "jaykaycodes-plugins",
|
|
3
3
|
"owner": {
|
|
4
|
-
"name": "
|
|
5
|
-
"url": "https://github.com/
|
|
4
|
+
"name": "Jake Correa",
|
|
5
|
+
"url": "https://github.com/jaykaycodes"
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
|
-
"description": "AI-powered development tools by
|
|
8
|
+
"description": "AI-powered development tools by Jake Correa",
|
|
9
9
|
"version": "1.0.0"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 5 commands, 3 skills for architecture analysis, pattern detection, and dataflow tracing.",
|
|
15
15
|
"version": "1.0.0",
|
|
16
16
|
"author": {
|
|
17
|
-
"name": "
|
|
18
|
-
"url": "https://github.com/
|
|
17
|
+
"name": "Jake Correa",
|
|
18
|
+
"url": "https://github.com/jaykaycodes"
|
|
19
19
|
},
|
|
20
|
-
"homepage": "https://github.com/
|
|
20
|
+
"homepage": "https://github.com/jaykaycodes/codebase-analyzer-mcp",
|
|
21
21
|
"tags": [
|
|
22
22
|
"codebase-analysis",
|
|
23
23
|
"architecture",
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"description": "Multi-layer codebase analysis with Gemini AI. 4 agents, 5 commands, 3 skills for architecture analysis, pattern detection, and dataflow tracing.",
|
|
5
5
|
"author": {
|
|
6
|
-
"name": "
|
|
7
|
-
"url": "https://github.com/
|
|
6
|
+
"name": "Jake Correa",
|
|
7
|
+
"url": "https://github.com/jaykaycodes"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://github.com/
|
|
9
|
+
"homepage": "https://github.com/jaykaycodes/codebase-analyzer-mcp",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"keywords": [
|
|
12
12
|
"codebase-analysis",
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Codebase Analyzer MCP
|
|
2
2
|
|
|
3
|
-
[](https://github.com/
|
|
3
|
+
[](https://github.com/jaykaycodes/codebase-analyzer-mcp)
|
|
4
4
|
[](https://www.npmjs.com/package/codebase-analyzer-mcp)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
|
|
7
7
|
Multi-layer codebase analysis with Gemini AI. Both an MCP server for Claude and a standalone CLI.
|
|
8
8
|
|
|
9
9
|
**Features:**
|
|
10
|
+
|
|
10
11
|
- Progressive disclosure - start cheap, drill down as needed
|
|
11
12
|
- Tree-sitter structural analysis (no LLM cost)
|
|
12
13
|
- Gemini semantic analysis (opt-in)
|
|
@@ -16,42 +17,45 @@ Multi-layer codebase analysis with Gemini AI. Both an MCP server for Claude and
|
|
|
16
17
|
|
|
17
18
|
## Installation
|
|
18
19
|
|
|
19
|
-
###
|
|
20
|
+
### Package Manager (Recommended)
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g codebase-analyzer-mcp
|
|
24
|
+
bun install -g codebase-analyzer-mcp
|
|
25
|
+
pnpm install -g codebase-analyzer-mcp
|
|
26
|
+
yarn add -g codebase-analyzer-mcp
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Standalone Binary
|
|
20
30
|
|
|
21
|
-
Download the binary for your platform from [Releases](https://github.com/
|
|
31
|
+
Download the binary for your platform from [Releases](https://github.com/jaykaycodes/codebase-analyzer-mcp/releases):
|
|
22
32
|
|
|
23
33
|
```bash
|
|
24
34
|
# macOS (Apple Silicon)
|
|
25
|
-
curl -L https://github.com/
|
|
35
|
+
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-macos-arm64 -o cba
|
|
26
36
|
chmod +x cba
|
|
27
37
|
sudo mv cba /usr/local/bin/
|
|
28
38
|
|
|
29
39
|
# macOS (Intel)
|
|
30
|
-
curl -L https://github.com/
|
|
40
|
+
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-macos-x64 -o cba
|
|
31
41
|
chmod +x cba
|
|
32
42
|
sudo mv cba /usr/local/bin/
|
|
33
43
|
|
|
34
44
|
# Linux (x64)
|
|
35
|
-
curl -L https://github.com/
|
|
45
|
+
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-linux-x64 -o cba
|
|
36
46
|
chmod +x cba
|
|
37
47
|
sudo mv cba /usr/local/bin/
|
|
38
48
|
|
|
39
49
|
# Linux (ARM64)
|
|
40
|
-
curl -L https://github.com/
|
|
50
|
+
curl -L https://github.com/jaykaycodes/codebase-analyzer-mcp/releases/latest/download/cba-linux-arm64 -o cba
|
|
41
51
|
chmod +x cba
|
|
42
52
|
sudo mv cba /usr/local/bin/
|
|
43
53
|
```
|
|
44
54
|
|
|
45
|
-
### npm
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
npm install -g codebase-analyzer-mcp
|
|
49
|
-
```
|
|
50
|
-
|
|
51
55
|
### From Source (with Bun)
|
|
52
56
|
|
|
53
57
|
```bash
|
|
54
|
-
git clone https://github.com/
|
|
58
|
+
git clone https://github.com/jaykaycodes/codebase-analyzer-mcp.git
|
|
55
59
|
cd codebase-analyzer-mcp
|
|
56
60
|
bun install && bun run build
|
|
57
61
|
```
|
|
@@ -98,11 +102,11 @@ cba capabilities
|
|
|
98
102
|
|
|
99
103
|
### Analysis Depths
|
|
100
104
|
|
|
101
|
-
| Depth
|
|
102
|
-
|
|
103
|
-
| `surface`
|
|
104
|
-
| `standard` | Medium | Low
|
|
105
|
-
| `deep`
|
|
105
|
+
| Depth | Speed | LLM Cost | Includes |
|
|
106
|
+
| ---------- | ------ | -------- | ------------------------------------------ |
|
|
107
|
+
| `surface` | Fast | ~0 | Files, languages, entry points, modules |
|
|
108
|
+
| `standard` | Medium | Low | + symbols, imports, complexity metrics |
|
|
109
|
+
| `deep` | Slow | High | + semantic analysis, architecture insights |
|
|
106
110
|
|
|
107
111
|
## MCP Server Usage
|
|
108
112
|
|
|
@@ -162,13 +166,13 @@ npm install -g codebase-analyzer-mcp
|
|
|
162
166
|
|
|
163
167
|
### MCP Tools
|
|
164
168
|
|
|
165
|
-
| Tool
|
|
166
|
-
|
|
167
|
-
| `analyze_repo`
|
|
168
|
-
| `expand_section`
|
|
169
|
-
| `find_patterns`
|
|
170
|
-
| `trace_dataflow`
|
|
171
|
-
| `get_analysis_capabilities` | List available options
|
|
169
|
+
| Tool | Description |
|
|
170
|
+
| --------------------------- | ----------------------------------------- |
|
|
171
|
+
| `analyze_repo` | Full analysis with progressive disclosure |
|
|
172
|
+
| `expand_section` | Drill into specific sections |
|
|
173
|
+
| `find_patterns` | Detect design/architecture patterns |
|
|
174
|
+
| `trace_dataflow` | Trace data flow through the system |
|
|
175
|
+
| `get_analysis_capabilities` | List available options |
|
|
172
176
|
|
|
173
177
|
## Output Structure
|
|
174
178
|
|
|
@@ -211,31 +215,31 @@ This package also works as a Claude Code plugin with agents, commands, and skill
|
|
|
211
215
|
|
|
212
216
|
```bash
|
|
213
217
|
# Direct install
|
|
214
|
-
claude /plugin install https://github.com/
|
|
218
|
+
claude /plugin install https://github.com/jaykaycodes/codebase-analyzer-mcp
|
|
215
219
|
|
|
216
220
|
# Or add as marketplace first (if you want to browse/manage multiple plugins)
|
|
217
|
-
claude /plugin marketplace add https://github.com/
|
|
221
|
+
claude /plugin marketplace add https://github.com/jaykaycodes/codebase-analyzer-mcp
|
|
218
222
|
claude /plugin install codebase-analyzer
|
|
219
223
|
```
|
|
220
224
|
|
|
221
225
|
### Plugin Commands
|
|
222
226
|
|
|
223
|
-
| Command
|
|
224
|
-
|
|
225
|
-
| `/analyze`
|
|
227
|
+
| Command | Description |
|
|
228
|
+
| ----------- | -------------------- |
|
|
229
|
+
| `/analyze` | Analyze a codebase |
|
|
226
230
|
| `/patterns` | Find design patterns |
|
|
227
|
-
| `/trace`
|
|
228
|
-
| `/explore`
|
|
229
|
-
| `/compare`
|
|
231
|
+
| `/trace` | Trace data flow |
|
|
232
|
+
| `/explore` | Quick exploration |
|
|
233
|
+
| `/compare` | Compare repositories |
|
|
230
234
|
|
|
231
235
|
### Plugin Agents
|
|
232
236
|
|
|
233
|
-
| Agent
|
|
234
|
-
|
|
237
|
+
| Agent | Purpose |
|
|
238
|
+
| ----------------------- | -------------------------- |
|
|
235
239
|
| `architecture-analyzer` | Full architecture analysis |
|
|
236
|
-
| `pattern-detective`
|
|
237
|
-
| `dataflow-tracer`
|
|
238
|
-
| `codebase-explorer`
|
|
240
|
+
| `pattern-detective` | Pattern detection |
|
|
241
|
+
| `dataflow-tracer` | Data flow tracing |
|
|
242
|
+
| `codebase-explorer` | Quick exploration |
|
|
239
243
|
|
|
240
244
|
## Development
|
|
241
245
|
|
package/dist/cli/index.js
CHANGED
|
@@ -44076,7 +44076,7 @@ var package_default;
|
|
|
44076
44076
|
var init_package = __esm(() => {
|
|
44077
44077
|
package_default = {
|
|
44078
44078
|
name: "codebase-analyzer-mcp",
|
|
44079
|
-
version: "1.0.
|
|
44079
|
+
version: "1.0.1",
|
|
44080
44080
|
description: "Multi-layer codebase analysis with Gemini AI. MCP server + Claude plugin with progressive disclosure.",
|
|
44081
44081
|
type: "module",
|
|
44082
44082
|
main: "dist/mcp/server.js",
|
|
@@ -44112,13 +44112,13 @@ var init_package = __esm(() => {
|
|
|
44112
44112
|
},
|
|
44113
44113
|
repository: {
|
|
44114
44114
|
type: "git",
|
|
44115
|
-
url: "git+https://github.com/
|
|
44115
|
+
url: "git+https://github.com/jaykaycodes/codebase-analyzer-mcp.git"
|
|
44116
44116
|
},
|
|
44117
|
-
homepage: "https://github.com/
|
|
44117
|
+
homepage: "https://github.com/jaykaycodes/codebase-analyzer-mcp#readme",
|
|
44118
44118
|
bugs: {
|
|
44119
|
-
url: "https://github.com/
|
|
44119
|
+
url: "https://github.com/jaykaycodes/codebase-analyzer-mcp/issues"
|
|
44120
44120
|
},
|
|
44121
|
-
author: "
|
|
44121
|
+
author: "Jake Correa",
|
|
44122
44122
|
keywords: [
|
|
44123
44123
|
"mcp",
|
|
44124
44124
|
"gemini",
|
package/dist/mcp/server.js
CHANGED
|
@@ -70685,7 +70685,7 @@ If you cannot find the entry point, explain what you looked for in the summary a
|
|
|
70685
70685
|
// package.json
|
|
70686
70686
|
var package_default = {
|
|
70687
70687
|
name: "codebase-analyzer-mcp",
|
|
70688
|
-
version: "1.0.
|
|
70688
|
+
version: "1.0.1",
|
|
70689
70689
|
description: "Multi-layer codebase analysis with Gemini AI. MCP server + Claude plugin with progressive disclosure.",
|
|
70690
70690
|
type: "module",
|
|
70691
70691
|
main: "dist/mcp/server.js",
|
|
@@ -70721,13 +70721,13 @@ var package_default = {
|
|
|
70721
70721
|
},
|
|
70722
70722
|
repository: {
|
|
70723
70723
|
type: "git",
|
|
70724
|
-
url: "git+https://github.com/
|
|
70724
|
+
url: "git+https://github.com/jaykaycodes/codebase-analyzer-mcp.git"
|
|
70725
70725
|
},
|
|
70726
|
-
homepage: "https://github.com/
|
|
70726
|
+
homepage: "https://github.com/jaykaycodes/codebase-analyzer-mcp#readme",
|
|
70727
70727
|
bugs: {
|
|
70728
|
-
url: "https://github.com/
|
|
70728
|
+
url: "https://github.com/jaykaycodes/codebase-analyzer-mcp/issues"
|
|
70729
70729
|
},
|
|
70730
|
-
author: "
|
|
70730
|
+
author: "Jake Correa",
|
|
70731
70731
|
keywords: [
|
|
70732
70732
|
"mcp",
|
|
70733
70733
|
"gemini",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codebase-analyzer-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Multi-layer codebase analysis with Gemini AI. MCP server + Claude plugin with progressive disclosure.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/mcp/server.js",
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
|
39
|
-
"url": "git+https://github.com/
|
|
39
|
+
"url": "git+https://github.com/jaykaycodes/codebase-analyzer-mcp.git"
|
|
40
40
|
},
|
|
41
|
-
"homepage": "https://github.com/
|
|
41
|
+
"homepage": "https://github.com/jaykaycodes/codebase-analyzer-mcp#readme",
|
|
42
42
|
"bugs": {
|
|
43
|
-
"url": "https://github.com/
|
|
43
|
+
"url": "https://github.com/jaykaycodes/codebase-analyzer-mcp/issues"
|
|
44
44
|
},
|
|
45
|
-
"author": "
|
|
45
|
+
"author": "Jake Correa",
|
|
46
46
|
"keywords": [
|
|
47
47
|
"mcp",
|
|
48
48
|
"gemini",
|