@sarmadparvez/postgresql-mcp 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,13 @@ postgresql-mcp postgresql://user:pass@localhost:5432/mydb
|
|
|
45
45
|
postgresql-mcp postgresql://user:pass@localhost:5432/mydb?mode=readonly
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
+
Or with `npx` (no install required):
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
npx @sarmadparvez/postgresql-mcp postgresql://user:pass@localhost:5432/mydb
|
|
52
|
+
npx @sarmadparvez/postgresql-mcp postgresql://user:pass@localhost:5432/mydb?mode=readonly
|
|
53
|
+
```
|
|
54
|
+
|
|
48
55
|
## Tools
|
|
49
56
|
|
|
50
57
|
| Tool | Available in | Description |
|
|
@@ -69,6 +76,7 @@ Add this to your `claude_desktop_config.json`:
|
|
|
69
76
|
"postgres": {
|
|
70
77
|
"command": "npx",
|
|
71
78
|
"args": [
|
|
79
|
+
"-y",
|
|
72
80
|
"@sarmadparvez/postgresql-mcp",
|
|
73
81
|
"postgresql://user:pass@localhost:5432/mydb"
|
|
74
82
|
]
|
|
@@ -85,6 +93,7 @@ For read-only access:
|
|
|
85
93
|
"postgres-readonly": {
|
|
86
94
|
"command": "npx",
|
|
87
95
|
"args": [
|
|
96
|
+
"-y",
|
|
88
97
|
"@sarmadparvez/postgresql-mcp",
|
|
89
98
|
"postgresql://user:pass@localhost:5432/mydb?mode=readonly"
|
|
90
99
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sarmadparvez/postgresql-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "MCP server for PostgreSQL with full read-write support. Works with any PostgreSQL instance — local, Supabase, RDS, or self-hosted.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|