We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lila-graph/lila-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# =<fill>
# Lila MCP Standalone Server Configuration
# =<fill>
# This file contains all environment variables for the standalone MCP server.
# Variables are automatically loaded by python-dotenv and FastMCP.
#
# For development: Edit values here instead of passing via command line
# For production: Use secure secret management (Docker secrets, etc.)
# =<fill>
# ----------------------------------------------------------------------------
# UV Environment Management (addresses VIRTUAL_ENV mismatch warnings)
# ----------------------------------------------------------------------------
# These variables help uv correctly manage virtual environments and reduce
# the "VIRTUAL_ENV does not match project environment path" warnings
# Override default project environment path if needed (optional)
# UV_PROJECT_ENVIRONMENT=<fill>
# Specify Python version for uv environment creation (optional)
# UV_PYTHON=<fill>
# ----------------------------------------------------------------------------
# Neo4j Database Configuration
# ----------------------------------------------------------------------------
NEO4J_URI=<fill>
NEO4J_USER=<fill>
NEO4J_PASSWORD=<fill>
DISABLE_NEO4J=<fill>
# Neo4j connection timeout and retry settings
NEO4J_TIMEOUT=<fill>
NEO4J_MAX_RETRY_TIME=<fill>
# ----------------------------------------------------------------------------
# LLM Configuration
# ----------------------------------------------------------------------------
DEFAULT_LLM_MODEL=<fill>
LLM_TEMPERATURE=<fill>
# API Keys (add your actual keys here for production)
# OPENAI_API_KEY=<fill>
# ANTHROPIC_API_KEY=<fill>
# ----------------------------------------------------------------------------
# FastMCP and Telemetry Configuration
# ----------------------------------------------------------------------------
ENABLE_LOGFIRE_TELEMETRY=<fill>
LOGFIRE_PROJECT_NAME=<fill>
# Optional: Logfire authentication (for production monitoring)
# LOGFIRE_TOKEN=<fill>
# FastMCP development settings
FASTMCP_AUTO_RELOAD=<fill>
FASTMCP_LOG_LEVEL=<fill>
# ----------------------------------------------------------------------------
# Environment and Logging Configuration
# ----------------------------------------------------------------------------
ENV=<fill>
LOG_LEVEL=<fill>
LOG_FORMAT=<fill>
# Optional: Enhanced logging configuration
LOG_FILE_ENABLED=<fill>
LOG_FILE_PATH=<fill>
LOG_ROTATION_SIZE=<fill>
LOG_RETENTION_DAYS=<fill>
# ----------------------------------------------------------------------------
# MCP Server Configuration
# ----------------------------------------------------------------------------
MCP_HOST=<fill>
MCP_PORT=<fill>
# MCP Inspector configuration (for development)
MCP_INSPECTOR_HOST=<fill>
MCP_INSPECTOR_PORT=<fill>
# HTTP transport settings
MCP_TRANSPORT=<fill>
MCP_REQUEST_TIMEOUT=<fill>
MCP_MAX_CONNECTIONS=<fill>
# ----------------------------------------------------------------------------
# Development and Performance Configuration
# ----------------------------------------------------------------------------
# Migration status (Phase 1 =<fill>
MIGRATION_PHASE=<fill>
# Development mode settings
DEBUG_MODE=<fill>
ENABLE_DEV_FEATURES=<fill>
ENABLE_PERFORMANCE_MONITORING=<fill>
# Resource limits
MAX_CONCURRENT_REQUESTS=<fill>
MEMORY_LIMIT_MB=<fill>
REQUEST_TIMEOUT_SECONDS=<fill>
# ----------------------------------------------------------------------------
# Security Configuration
# ----------------------------------------------------------------------------
# Security settings for production deployment
ENABLE_AUTH=<fill>
CORS_ALLOWED_ORIGINS=<fill>
RATE_LIMIT_ENABLED=<fill>
RATE_LIMIT_REQUESTS_PER_MINUTE=<fill>
# Optional: TLS/SSL configuration
TLS_ENABLED=<fill>
# TLS_CERT_PATH=<fill>
# TLS_KEY_PATH=<fill>
# ----------------------------------------------------------------------------
# Development Tools and Debugging
# ----------------------------------------------------------------------------
# Enable various development and debugging features
ENABLE_INSPECTOR_INTEGRATION=<fill>
ENABLE_PROTOCOL_LOGGING=<fill>
ENABLE_PERFORMANCE_PROFILING=<fill>
# uv and environment debugging
UV_DEBUG=<fill>
PYTHONPATH_DEBUG=<fill>
# ----------------------------------------------------------------------------
# Data and Storage Configuration
# ----------------------------------------------------------------------------
# Local data storage paths
DATA_DIR=<fill>
CACHE_DIR=<fill>
TEMP_DIR=<fill>
# Database fallback configuration
ENABLE_MEMORY_FALLBACK=<fill>
MEMORY_DB_SIZE_LIMIT=<fill>
# ----------------------------------------------------------------------------
# Deployment Configuration
# ----------------------------------------------------------------------------
# Container and deployment-specific settings
CONTAINER_MODE=<fill>
HEALTH_CHECK_ENABLED=<fill>
HEALTH_CHECK_INTERVAL=<fill>
# Service discovery (for distributed deployments)
SERVICE_NAME=<fill>
SERVICE_VERSION=<fill>
SERVICE_ENVIRONMENT=<fill>