@calebmabry/postgres-mcp-server 0.1.0 → 0.1.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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -207,16 +207,16 @@ npm run test:integration
|
|
|
207
207
|
| `DB_USER` | `postgres` | Database user |
|
|
208
208
|
| `DB_PASSWORD` | _required_ | Database password |
|
|
209
209
|
| `DB_NAME` | `postgres` | Database name |
|
|
210
|
-
| `DB_SSL` | `
|
|
210
|
+
| `DB_SSL` | `false` | Enable SSL connection (set to `false` for local dev) |
|
|
211
211
|
| `READ_ONLY` | `true` | Restrict to SELECT/WITH/EXPLAIN queries |
|
|
212
212
|
| `QUERY_TIMEOUT` | `30000` | Query timeout in milliseconds |
|
|
213
|
-
| `MODE` | `stdio` | Server mode in Docker: `stdio` or `http` |
|
|
214
|
-
|
|
215
|
-
For detailed documentation on all features and setup options, visit **[caleb-mabry.github.io/postgres-mcp](https://caleb-mabry.github.io/postgres-mcp/)**.
|
|
216
213
|
| `MAX_PAGE_SIZE` | `500` | Maximum rows per page |
|
|
217
214
|
| `DEFAULT_PAGE_SIZE` | `100` | Default page size when not specified |
|
|
218
215
|
| `PORT` | `3000` | HTTP server port (HTTP mode only) |
|
|
219
216
|
| `ALLOWED_HOSTS` | _none_ | Comma-separated allowed hosts (HTTP mode only). Example: `localhost,127.0.0.1,example.com` |
|
|
217
|
+
| `MODE` | `stdio` | Server mode in Docker: `stdio` or `http` |
|
|
218
|
+
|
|
219
|
+
For detailed documentation on all features and setup options, visit **[caleb-mabry.github.io/postgres-mcp](https://caleb-mabry.github.io/postgres-mcp/)**.
|
|
220
220
|
|
|
221
221
|
## License
|
|
222
222
|
|