db4app-mcp-server 0.1.8 → 0.1.9
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 +2 -0
- package/dist/index.js +23360 -4349
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -108,6 +108,8 @@ All configuration is done via environment variables:
|
|
|
108
108
|
- `LM_STUDIO_EMBEDDING_URL` - LM Studio embedding API endpoint (default: `http://localhost:1234/v1/embeddings`)
|
|
109
109
|
- `LM_STUDIO_EMBEDDING_MODEL` - Optional model name for embeddings
|
|
110
110
|
- `MCP_SCHEMA` - **Optional**: Schema name for RAG functions (`remember`, `search_memory`). Defaults to `public`. For recipes, set this to the recipe's schema (e.g., `rag_mcp`).
|
|
111
|
+
- `POSTHOG_API_KEY` - **Optional**: PostHog API key for performance tracking. If provided, the server will track query performance metrics (connection time, query time, array sizes, timeouts) to help diagnose performance issues.
|
|
112
|
+
- `POSTHOG_HOST` - **Optional**: PostHog host URL (default: `https://us.i.posthog.com`). Only used if `POSTHOG_API_KEY` is set.
|
|
111
113
|
|
|
112
114
|
**Note**: This MCP server uses the **Postgres TCP protocol** with TLS encryption, just like standard Postgres clients. No HTTP or RSA-OAEP encryption is used.
|
|
113
115
|
|