-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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
{
"name": "@jadchene/mcp-database-service",
"version": "0.1.5",
"description": "A multi-database MCP server with lazy short-lived connections, strong read-only defaults, and explicit confirmation for writable SQL.",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-database-service": "./dist/index.js"
},
"files": [
"dist/config",
"dist/core",
"dist/db",
"dist/server",
"dist/utils",
"dist/index.js",
"dist/index.d.ts",
"dist/version.js",
"dist/version.d.ts",
"README.md",
"LICENSE",
"config/databases.example.json"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "node --test \"dist/tests/*.test.js\"",
"verify:reload": "node scripts/verify-config-reload.mjs",
"prepack": "npm run build"
},
"keywords": [
"mcp",
"database",
"mysql",
"oracle",
"postgresql",
"redis",
"opengauss"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jadchene/mcp-database.git"
},
"homepage": "https://github.com/jadchene/mcp-database#readme",
"bugs": {
"url": "https://github.com/jadchene/mcp-database/issues"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"mysql2": "^3.14.0",
"oracledb": "^6.8.0",
"pg": "^8.16.0",
"redis": "^5.6.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/pg": "^8.15.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}