-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 907 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 907 Bytes
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
{
"name": "postgres-mcp",
"version": "1.0.0",
"description": "MCP server for querying PostgreSQL over stdio or Streamable HTTP",
"main": "dist/index.js",
"bin": {
"postgres-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"scripts": {
"build": "tsc",
"prepare": "npm run build && (husky || true)",
"start": "node dist/index.js",
"start:http": "MCP_TRANSPORT=http node dist/index.js",
"dev": "tsx --watch src/index.ts",
"dev:http": "MCP_TRANSPORT=http tsx --watch src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^24.0.10",
"@types/pg": "^8.15.4",
"husky": "^9.1.7",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"pg": "^8.16.3",
"zod": "^4.3.6"
}
}