-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "cortex-engine-mcp",
"version": "1.4.0",
"description": "Code intelligence MCP server with a local AST index and git-aware tools",
"main": "src/server.js",
"bin": {
"cortex-engine": "./bin/cortex.js"
},
"scripts": {
"test": "jest --no-coverage",
"start": "node src/server.js"
},
"keywords": [
"mcp",
"code-intelligence",
"tree-sitter",
"ast"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.8.0",
"chokidar": "^4.0.3",
"simple-git": "^3.36.0",
"tree-sitter": "^0.21.1",
"tree-sitter-c-sharp": "^0.23.1",
"tree-sitter-go": "^0.21.2",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.21.4",
"tree-sitter-python": "^0.21.0",
"tree-sitter-rust": "^0.21.0",
"tree-sitter-typescript": "^0.23.2",
"zod": "^3.25.76"
},
"devDependencies": {
"jest": "^30.3.0"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
}
}