-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1019 Bytes
/
package.json
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
{
"name": "@pash1986/mongodb-mcp-server",
"version": "0.1.7",
"description": "MongoDB MCP server for local mongodb queries",
"type": "module",
"bin": {
"mcp-server-mongodb": "build/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Pavel Duchovny, MongoDB Inc.",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
"files": [
"build",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node ./build/index.js",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.7.8",
"dotenv": "^16.4.5",
"mongodb": "^6.11.0"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}