-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"name": "code-index-mcp",
"version": "2.0.0",
"description": "Production-ready MCP server for code indexing and search using SQLite",
"type": "module",
"main": "mcp/server.js",
"bin": {
"code-index": "bin/cli.js",
"code-index-server": "bin/server.js",
"code-index-dashboard": "bin/dashboard.js"
},
"scripts": {
"index": "node indexer/indexer.js",
"watch": "node watcher/watcher.js",
"server": "node mcp/server.js http 34244",
"dev": "node mcp/server.js http 34244",
"dashboard": "node mcp/server.js http 34244",
"dashboard:cli": "node cli/dashboard.js",
"test-search": "curl -X POST http://localhost:34244/mcp -d '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"search_code\",\"arguments\":{\"query\":\"function\"}}}'",
"clean": "rm -f code-index.db"
},
"keywords": [
"mcp",
"code-search",
"indexing",
"sqlite",
"fts5"
],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.24.0",
"@modelcontextprotocol/sdk": "^1.28.0",
"better-sqlite3": "^9.0.0",
"chokidar": "^3.5.3",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"express-rate-limit": "^8.3.2",
"sanitize-filename": "^1.6.4"
},
"devDependencies": {}
}