-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.86 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
{
"name": "mcp-database-manager",
"version": "1.0.0",
"description": "Comprehensive MCP server for database management and analysis. Supports PostgreSQL, MySQL, SQLite, SQL Server, MongoDB, and Redis.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"database",
"management",
"analysis",
"postgresql",
"mysql",
"sqlite",
"mssql",
"mongodb",
"redis",
"query-analysis",
"schema-management",
"data-analysis",
"backup-restore",
"security"
],
"author": "code-alchemist01",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/code-alchemist01/database-manager-mcp-Server.git"
},
"bugs": {
"url": "https://github.com/code-alchemist01/database-manager-mcp-Server/issues"
},
"homepage": "https://github.com/code-alchemist01/database-manager-mcp-Server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^9.2.2",
"cassandra-driver": "^4.7.2",
"mongodb": "^6.3.0",
"mssql": "^10.0.1",
"mysql2": "^3.6.5",
"pg": "^8.11.3",
"redis": "^4.6.12",
"sql-formatter": "^15.1.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/jest": "^29.5.11",
"@types/mssql": "^4.3.1",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"jest": "^29.7.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}