forked from jamesjohnsdev/postgresql-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.34 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
{
"name": "@henkey/postgres-mcp-server",
"version": "2.0.0",
"description": "A Model Context Protocol (MCP) server that provides comprehensive PostgreSQL database management capabilities for AI assistants",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"bin": {
"postgres-mcp": "build/index.js"
},
"files": [
"build/",
"README.md",
"SECURITY.md",
"docs/",
"scripts/",
"LICENSE",
"TOOL_SCHEMAS.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && node -e \"const fs = require('fs'); const path = 'build/index.js'; const stats = fs.statSync(path); fs.chmodSync(path, stats.mode | parseInt('755', 8));\"",
"start": "node build/index.js",
"dev": "tsc -w & nodemon build/index.js",
"lint": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run --pool=threads --maxWorkers=1 --minWorkers=1",
"test:integration": "vitest run src/integration --pool=threads --maxWorkers=1 --minWorkers=1",
"verify:audit": "node scripts/verify-audit.mjs",
"verify:build": "node scripts/verify-build.mjs",
"verify:cli": "node scripts/verify-cli.mjs",
"verify:connection-lifecycle": "node scripts/verify-connection-lifecycle.mjs",
"verify:connection-lifecycle-selftest": "node scripts/verify-connection-lifecycle-selftest.mjs",
"verify:docs": "node scripts/verify-docs.mjs",
"verify:docker": "node scripts/verify-docker.mjs",
"verify:mcp": "node scripts/verify-mcp.mjs",
"verify:package": "node scripts/verify-package.mjs",
"verify:packed-install": "node scripts/verify-packed-install.mjs",
"verify:security-docs": "node scripts/verify-security-docs.mjs",
"verify:workflows": "node scripts/verify-workflows.mjs",
"prepublishOnly": "npm run test:run && npm run build && npm run verify:audit && npm run verify:build && npm run verify:cli && npm run verify:connection-lifecycle && npm run verify:connection-lifecycle-selftest && npm run verify:docs && npm run verify:security-docs && npm run verify:docker && npm run verify:mcp && npm run verify:workflows && npm run verify:package && npm run verify:packed-install",
"postinstall": "echo 'postgres-mcp-server installed successfully! Run with: npx @henkey/postgres-mcp-server'"
},
"keywords": [
"postgresql",
"postgres",
"mcp",
"database",
"model-context-protocol",
"ai",
"claude",
"database-management",
"sql",
"ai-assistant"
],
"author": {
"name": "henkey",
"email": "henkey@example.com",
"url": "https://github.com/henkey"
},
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/HenkDz/postgresql-mcp-server.git"
},
"bugs": {
"url": "https://github.com/HenkDz/postgresql-mcp-server/issues"
},
"homepage": "https://github.com/HenkDz/postgresql-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^12.1.0",
"pg": "^8.21.0",
"pg-monitor": "^3.1.0",
"pg-query-stream": "^4.15.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/pg": "^8.10.2",
"nodemon": "^3.0.3",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"overrides": {
"picomatch": "^4.0.4",
"postcss": "^8.5.10",
"rollup": "^4.59.0",
"vite": "6.4.2"
}
}