-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.31 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.31 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "mongodb-mcp-server",
"description": "MongoDB Model Context Protocol Server",
"version": "1.1.0",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/lib.d.ts",
"default": "./dist/esm/lib.js"
},
"require": {
"types": "./dist/cjs/lib.d.ts",
"default": "./dist/cjs/lib.js"
}
}
},
"main": "./dist/cjs/lib.js",
"types": "./dist/cjs/lib.d.ts",
"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/esm/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js --transport http --loggers stderr mcp",
"start:stdio": "node dist/index.js --transport stdio --loggers stderr mcp",
"prepare": "npm run build",
"build:clean": "rm -rf dist",
"build:update-package-version": "tsx scripts/updatePackageVersion.ts",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:universal-package": "tsx scripts/createUniversalPackage.ts",
"build:chmod": "chmod +x dist/esm/index.js",
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:universal-package && npm run build:chmod",
"inspect": "npm run build && mcp-inspector -- dist/esm/index.js",
"prettier": "prettier",
"check": "npm run build && npm run check:types && npm run check:lint && npm run check:format && npm run check:dependencies",
"check:lint": "eslint .",
"check:dependencies": "knip --strict",
"check:format": "prettier -c .",
"check:types": "tsc --noEmit --project tsconfig.json",
"fix": "npm run fix:lint && npm run reformat",
"fix:lint": "eslint . --fix",
"reformat": "prettier --write .",
"generate": "./scripts/generate.sh",
"test": "vitest --project eslint-rules --project unit-and-integration --coverage",
"pretest:accuracy": "npm run build",
"test:accuracy": "sh ./scripts/accuracy/runAccuracyTests.sh",
"test:long-running-tests": "vitest --project long-running-tests --coverage",
"atlas:cleanup": "vitest --project atlas-cleanup"
},
"license": "Apache-2.0",
"devDependencies": {
"@ai-sdk/azure": "^2.0.53",
"@ai-sdk/google": "^2.0.23",
"@ai-sdk/openai": "^2.0.52",
"@eslint/js": "^9.34.0",
"@modelcontextprotocol/inspector": "^0.16.5",
"@mongodb-js/oidc-mock-provider": "^0.11.3",
"@redocly/cli": "^2.0.8",
"@types/express": "^5.0.3",
"@types/node": "^24.5.2",
"@types/proper-lockfile": "^4.1.4",
"@types/semver": "^7.7.0",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/parser": "^8.44.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.4",
"ai": "^5.0.72",
"duplexpair": "^1.0.2",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"knip": "^5.63.1",
"mongodb": "^6.19.0",
"mongodb-runner": "^5.9.2",
"openapi-types": "^12.1.3",
"openapi-typescript": "^7.9.1",
"prettier": "^3.6.2",
"proper-lockfile": "^4.1.2",
"semver": "^7.7.2",
"simple-git": "^3.28.0",
"testcontainers": "^11.7.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"uuid": "^13.0.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"@mongodb-js/device-id": "^0.3.1",
"@mongodb-js/devtools-proxy-support": "^0.5.3",
"@mongosh/arg-parser": "^3.19.0",
"@mongosh/service-provider-node-driver": "^3.17.0",
"bson": "^6.10.4",
"express": "^5.1.0",
"lru-cache": "^11.1.0",
"mongodb-connection-string-url": "^3.0.2",
"mongodb-log-writer": "^2.4.1",
"mongodb-redact": "^1.2.0",
"mongodb-schema": "^12.6.2",
"node-fetch": "^3.3.2",
"node-machine-id": "1.1.12",
"oauth4webapi": "^3.8.0",
"openapi-fetch": "^0.14.0",
"ts-levenshtein": "^1.0.7",
"yargs-parser": "21.1.1",
"zod": "^3.25.76"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >= 23.0.0"
},
"optionalDependencies": {
"@mongodb-js/atlas-local": "^1.0.2",
"kerberos": "^2.2.2"
}
}