metabase-ai-assistant 3.1.0 → 3.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/.env.example +5 -0
- package/README.md +224 -499
- package/package.json +20 -6
- package/src/mcp/handlers/ai.js +207 -0
- package/src/mcp/handlers/dashboard.js +207 -0
- package/src/mcp/handlers/database.js +322 -0
- package/src/mcp/handlers/index.js +35 -0
- package/src/mcp/handlers/questions.js +134 -0
- package/src/mcp/server.js +2340 -2249
- package/src/utils/cache.js +166 -0
- package/src/utils/config.js +128 -0
- package/src/utils/response-optimizer.js +190 -0
package/.env.example
CHANGED
|
@@ -27,6 +27,11 @@ MB_METADATA_SSL=false
|
|
|
27
27
|
OPENAI_API_KEY=your_openai_key
|
|
28
28
|
ANTHROPIC_API_KEY=your_anthropic_key
|
|
29
29
|
|
|
30
|
+
# Security Settings
|
|
31
|
+
# Read-only mode blocks write operations (INSERT, UPDATE, DELETE, DROP, etc.)
|
|
32
|
+
# Set to 'false' to allow write operations (use with caution)
|
|
33
|
+
METABASE_READ_ONLY_MODE=true
|
|
34
|
+
|
|
30
35
|
# Application Settings
|
|
31
36
|
PORT=3001
|
|
32
37
|
LOG_LEVEL=info
|