@sisense/mcp-server 0.2.8 → 0.3.0

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 CHANGED
@@ -80,6 +80,22 @@ https://your-ngrok-url.ngrok-free.app/mcp?sisenseUrl=https://your-instance.sisen
80
80
 
81
81
  The server automatically derives its public base URL from request headers, so it works correctly behind proxies like ngrok.
82
82
 
83
+ ### Optional feature-flag query parameters
84
+
85
+ These query params override the corresponding env vars on a per-connection basis. Accepted values: `true`, `false`, `1`, `0` (case-insensitive).
86
+
87
+ | Query parameter | Env var equivalent | Default | Description |
88
+ | ---------------------------------- | --------------------------------------- | ------- | ---------------------------------------------------------------------------- |
89
+ | `mcpAppEnabled` | `MCP_APP_ENABLED` | `true` | MCP App mode: interactive chart in app. Set to `false` for tool mode (image) |
90
+ | `toolBuildQueryEnabled` | `TOOL_BUILD_QUERY_ENABLED` | `false` | Enable the `buildQuery` tool for executing analytics queries |
91
+ | `toolBuildChartNarrativeEnabled` | `TOOL_BUILD_CHART_NARRATIVE_ENABLED` | `true` | Include NLG narrative/insights in the chart builder response |
92
+
93
+ Example URL with all three overrides:
94
+
95
+ ```text
96
+ http://localhost:3001/mcp?sisenseUrl=https://your-instance.sisense.com&sisenseToken=your-api-token&mcpAppEnabled=false&toolBuildQueryEnabled=true&toolBuildChartNarrativeEnabled=false
97
+ ```
98
+
83
99
  ## Development
84
100
 
85
101
  ```bash