@metabob/mcp 0.2.2
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.
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@metabob/mcp",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "MCP server exposing Metabob analysis capabilities to AI agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"metabob-mcp": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"workspaces": ["vendor/cpg-inference"],
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/**/*",
|
|
12
|
+
"include/**/*",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"start": "bun run src/index.ts",
|
|
18
|
+
"dev": "bun --watch src/index.ts",
|
|
19
|
+
"test": "bun test",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"build:vendor": "(cd vendor/cpg-inference && bun run build)",
|
|
22
|
+
"build:model": "mkdir -p include && cp vendor/cpg-inference/include/*.onnx vendor/cpg-inference/include/*.onnx.data include/",
|
|
23
|
+
"build": "bun run build:vendor && bun run build:model && bun build src/cli.ts --target node --outdir dist --external onnxruntime-node --external tree-sitter --external tree-sitter-javascript --external tree-sitter-python --external usearch && chmod +x dist/cli.js",
|
|
24
|
+
"validate:backend": "bun run scripts/validate-backend.ts",
|
|
25
|
+
"prepublishOnly": "bun run typecheck && bun run build"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"mcp",
|
|
29
|
+
"model-context-protocol",
|
|
30
|
+
"metabob",
|
|
31
|
+
"code-analysis",
|
|
32
|
+
"ai-agent",
|
|
33
|
+
"claude",
|
|
34
|
+
"cursor",
|
|
35
|
+
"code-property-graph",
|
|
36
|
+
"cpg"
|
|
37
|
+
],
|
|
38
|
+
"author": "Metabob Inc.",
|
|
39
|
+
"license": "PROPRIETARY",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/MetabobProject/metabob-mcp.git"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public",
|
|
46
|
+
"registry": "https://registry.npmjs.org/"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=18.0.0"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@metabob/cpg-inference": "workspace:*",
|
|
53
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
54
|
+
"hono": "^4.0.0",
|
|
55
|
+
"onnxruntime-node": "^1.20.1",
|
|
56
|
+
"tree-sitter": "^0.21.1",
|
|
57
|
+
"tree-sitter-javascript": "^0.23.0",
|
|
58
|
+
"tree-sitter-python": "^0.23.5",
|
|
59
|
+
"usearch": "^2.21.4",
|
|
60
|
+
"zod": "^3.23.8"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/bun": "latest",
|
|
64
|
+
"typescript": "^5.3.0"
|
|
65
|
+
},
|
|
66
|
+
"trustedDependencies": [
|
|
67
|
+
"onnxruntime-node",
|
|
68
|
+
"tree-sitter-javascript",
|
|
69
|
+
"tree-sitter-python",
|
|
70
|
+
"usearch"
|
|
71
|
+
]
|
|
72
|
+
}
|