forked from mongodb-js/mongodb-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "mongodb-mcp-server",
"description": "MongoDB Model Context Protocol Server",
"version": "0.1.1",
"main": "dist/index.js",
"author": "MongoDB <info@mongodb.com>",
"homepage": "https://github.com/mongodb-js/mongodb-mcp-server",
"repository": {
"url": "https://github.com/mongodb-js/mongodb-mcp-server.git"
},
"bin": {
"mongodb-mcp-server": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"prepare": "npm run build",
"build:clean": "rm -rf dist",
"build:compile": "tsc --project tsconfig.build.json",
"build:chmod": "chmod +x dist/index.js",
"build": "npm run build:clean && npm run build:compile && npm run build:chmod",
"inspect": "npm run build && mcp-inspector -- dist/index.js",
"prettier": "prettier",
"check": "npm run build && npm run check:types && npm run check:lint && npm run check:format",
"check:lint": "eslint .",
"check:format": "prettier -c .",
"check:types": "tsc --noEmit --project tsconfig.json",
"reformat": "prettier --write .",
"generate": "./scripts/generate.sh",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@jest/globals": "^30.0.0",
"@modelcontextprotocol/inspector": "^0.14.0",
"@redocly/cli": "^1.34.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/simple-oauth2": "^5.0.7",
"@types/yargs-parser": "^21.0.3",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-extended": "^6.0.0",
"mongodb-runner": "^5.8.2",
"openapi-types": "^12.1.3",
"openapi-typescript": "^7.6.1",
"prettier": "^3.5.3",
"ts-jest": "^29.3.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.1",
"yaml": "^2.7.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.2",
"@mongodb-js/device-id": "^0.2.1",
"@mongodb-js/devtools-connect": "^3.7.2",
"@mongosh/service-provider-node-driver": "^3.6.0",
"bson": "^6.10.3",
"lru-cache": "^11.1.0",
"mongodb": "^6.15.0",
"mongodb-connection-string-url": "^3.0.2",
"mongodb-log-writer": "^2.4.1",
"mongodb-redact": "^1.1.6",
"mongodb-schema": "^12.6.2",
"node-machine-id": "1.1.12",
"openapi-fetch": "^0.14.0",
"simple-oauth2": "^5.1.0",
"yargs-parser": "^22.0.0",
"zod": "^3.24.2"
},
"engines": {
"node": ">=20.10.0"
}
}