-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 898 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
40
41
{
"name": "mcp-mongodb-atlas",
"version": "0.1.10",
"description": "MCP Tool to operate and integrate MongoDB Atlas projects into an AI developed project",
"type": "module",
"bin": {
"mcp-mongodb-atlas": "./build/index.js"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"keywords": [
"mongodb",
"atlas",
"mcp",
"model-context-protocol",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}