@yawlabs/postgres-mcp 0.6.17 → 0.6.18
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 +4 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
Built and maintained by [Yaw Labs](https://yaw.sh).
|
|
9
9
|
|
|
10
|
-
[](yaw://install?name=Postgres&command=npx&args=-y%2C%40yawlabs%2Fpostgres-mcp&description=Query%20PostgreSQL%20-%20schema%20introspection%2C%20EXPLAIN%20plans%2C%20health%20diagnostics%2C%20read-only%20by%20default&source=https%3A%2F%2Fgithub.com%2FYawLabs%2Fpostgres-mcp)
|
|
11
11
|
|
|
12
|
-
One click adds this to your
|
|
12
|
+
One click adds this to your local Yaw MCP config so it's available in every Yaw Terminal session. Or install manually below.
|
|
13
13
|
|
|
14
14
|
## Backstory
|
|
15
15
|
|
|
@@ -51,7 +51,7 @@ macOS / Linux / WSL:
|
|
|
51
51
|
"mcpServers": {
|
|
52
52
|
"postgres": {
|
|
53
53
|
"command": "npx",
|
|
54
|
-
"args": ["-y", "@yawlabs/postgres-mcp"],
|
|
54
|
+
"args": ["-y", "@yawlabs/postgres-mcp@latest"],
|
|
55
55
|
"env": {
|
|
56
56
|
"DATABASE_URL": "postgres://user:password@host:5432/dbname"
|
|
57
57
|
}
|
|
@@ -67,7 +67,7 @@ Windows:
|
|
|
67
67
|
"mcpServers": {
|
|
68
68
|
"postgres": {
|
|
69
69
|
"command": "cmd",
|
|
70
|
-
"args": ["/c", "npx", "-y", "@yawlabs/postgres-mcp"],
|
|
70
|
+
"args": ["/c", "npx", "-y", "@yawlabs/postgres-mcp@latest"],
|
|
71
71
|
"env": {
|
|
72
72
|
"DATABASE_URL": "postgres://user:password@host:5432/dbname"
|
|
73
73
|
}
|
package/dist/index.js
CHANGED
|
@@ -37610,7 +37610,7 @@ function compareVersions(a, b) {
|
|
|
37610
37610
|
}
|
|
37611
37611
|
|
|
37612
37612
|
// src/index.ts
|
|
37613
|
-
var version2 = true ? "0.6.
|
|
37613
|
+
var version2 = true ? "0.6.18" : (await null).createRequire(import.meta.url)("../package.json").version;
|
|
37614
37614
|
var subcommand = process.argv[2];
|
|
37615
37615
|
if (subcommand === "version" || subcommand === "--version") {
|
|
37616
37616
|
console.log(version2);
|
package/package.json
CHANGED