-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.22 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
{
"name": "sqlmate-mcp",
"version": "1.4.0",
"description": "Zero-config SQL database MCP server + browser GUI for Claude Code",
"type": "module",
"bin": {
"sqlmate-mcp": "src/index.js"
},
"main": "src/index.js",
"files": [
"src",
"public"
],
"engines": {
"node": ">=22.5"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"claude-code",
"sql",
"mysql",
"sqlite",
"mssql",
"postgres",
"postgresql",
"database",
"ai"
],
"author": "Adam Post <adamrpostjr@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/adamrpostjr/sqlmate-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adamrpostjr/sqlmate-mcp.git"
},
"bugs": {
"url": "https://github.com/adamrpostjr/sqlmate-mcp/issues"
},
"scripts": {
"build": "npm --prefix frontend install && npm --prefix frontend run build",
"start": "node src/index.js",
"test": "node --test test/**/*.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mssql": "^12.7.0",
"mysql2": "^3.23.0",
"open": "^11.0.0",
"pg": "^8.22.0",
"zod": "^4.4.3"
}
}