We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/schwarztim/elastic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1.32 kB
# Elastic MCP Server Configuration
# =================================
# All values are REQUIRED unless marked optional
# Elasticsearch Connection
# ------------------------
# Base URL for your Elasticsearch cluster
# Example: https://my-deployment.es.eastus2.azure.elastic-cloud.com
ELASTIC_URL=https://your-deployment.es.region.azure.elastic-cloud.com
# Authentication (choose ONE method)
# ----------------------------------
# Option 1: Pre-encoded API Key (recommended)
# This is the base64-encoded string from the API key creation response
ELASTIC_API_KEY_ENCODED=your-base64-encoded-api-key
# Option 2: Separate ID and Key (alternative)
# If you have the raw id and api_key values
# ELASTIC_API_KEY_ID=your-api-key-id
# ELASTIC_API_KEY_SECRET=your-api-key-secret
# Option 3: Basic Auth (not recommended for production)
# ELASTIC_USERNAME=your-username
# ELASTIC_PASSWORD=your-password
# SSL/TLS Configuration (optional)
# --------------------------------
# Set to "true" to skip SSL certificate verification (NOT recommended for production)
ELASTIC_SKIP_SSL_VERIFY=false
# Request Timeout (optional)
# --------------------------
# Timeout in milliseconds for API requests (default: 30000)
ELASTIC_TIMEOUT=30000
# Logging (optional)
# ------------------
# Log level: error, warn, info, debug
LOG_LEVEL=info