-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mcp-mongo-server",
"version": "0.1.3",
"description": "A Model Context Protocol server for MongoDB connections",
"private": false,
"type": "module",
"bin": {
"mongodb": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"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",
"@types/mongodb": "^4.0.6",
"mongodb": "^6.11.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"claude",
"claude-desktop",
"mcp",
"mongo",
"mongodb",
"model-context-protocol",
"llm",
"mcp-server",
"mcp-protocol",
"mcp-connector",
"mcp-connector-mongodb"
],
"author": "Muhammed Kilic <kiliczsh>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kiliczsh/mcp-mongo-server"
},
"homepage": "https://github.com/kiliczsh/mcp-mongo-server"
}