-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 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
{
"name": "mcp-postgres-multi",
"version": "1.0.0",
"description": "Multi-database PostgreSQL MCP server. One server, many databases. Supports per-project isolation via --label filter.",
"type": "module",
"bin": {
"mcp-postgres": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"config.example.json"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"postgresql",
"postgres",
"model-context-protocol",
"claude",
"cursor",
"ai",
"database",
"multi-database",
"connection-pool",
"ssl"
],
"author": "VKirill",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VKirill/multi-postgres-mcp-server.git"
},
"homepage": "https://github.com/VKirill/multi-postgres-mcp-server#readme",
"bugs": {
"url": "https://github.com/VKirill/multi-postgres-mcp-server/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"pg": "^8.13.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@types/pg": "^8.11.11",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}