-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1019 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1019 Bytes
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
{
"name": "sqlite-vec-mcp-server",
"version": "1.0.0",
"description": "MCP Server for querying documentation with sqlite-vec",
"main": "build/index.js",
"type": "module",
"bin": {
"doc-query": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"start": "node build/index.js",
"dev": "npm run build && npm start"
},
"files": [
"build"
],
"keywords": [
"mcp",
"sqlite-vec",
"vector",
"search"
],
"author": "",
"license": "ISC",
"dependencies": {
"@azure/identity": "^4.10.2",
"@azure/openai": "^2.0.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.12.1",
"better-sqlite3": "^11.10.0",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"openai": "^4.104.0",
"sqlite-vec": "0.1.7-alpha.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.1",
"@types/node": "^22.14.0",
"typescript": "^5.8.3"
}
}