We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/enessari/metabase-ai-assistant'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Metabase Configuration
METABASE_URL=http://localhost:3000
METABASE_USERNAME=your_username
METABASE_PASSWORD=your_password
METABASE_API_KEY=
# Database Configuration (for direct SQL execution)
DATABASE_TYPE=postgres
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_NAME=your_database
DATABASE_USER=your_user
DATABASE_PASSWORD=your_password
# Metabase Metadata Database Configuration (for analytics and insights)
# This is Metabase's own application database, not your business data
MB_METADATA_ENABLED=false
MB_METADATA_ENGINE=postgres
MB_METADATA_HOST=localhost
MB_METADATA_PORT=5432
MB_METADATA_DATABASE=metabase
MB_METADATA_USER=metabase_user
MB_METADATA_PASSWORD=metabase_password
MB_METADATA_SSL=false
# AI Configuration
OPENAI_API_KEY=your_openai_key
ANTHROPIC_API_KEY=your_anthropic_key
# Security Settings
# Read-only mode blocks write operations (INSERT, UPDATE, DELETE, DROP, etc.)
# Set to 'false' to allow write operations (use with caution)
METABASE_READ_ONLY_MODE=true
# Application Settings
PORT=3001
LOG_LEVEL=info
ENVIRONMENT=development