# Mindbody API Credentials
MINDBODY_API_KEY=your_api_key_here
MINDBODY_SITE_ID=-99 # Your site ID (e.g., -99 for sandbox)
MINDBODY_SOURCE_NAME=your_source_name
MINDBODY_SOURCE_PASSWORD=your_source_password
# Optional Configuration
MINDBODY_API_URL=https://api.mindbodyonline.com/public/v6
CACHE_TTL_MINUTES=5
RATE_LIMIT_BUFFER=100
# MCP Server Configuration (optional)
MCP_SERVER_NAME=mindbody-mcp
MCP_SERVER_VERSION=2.0.0
# Transport Configuration (STDIO or SSE)
MCP_TRANSPORT=stdio # Options: stdio (default) or sse
MCP_PORT=3000 # Port for SSE server (default: 3000)
MCP_HOST=0.0.0.0 # Host for SSE server (default: 0.0.0.0)
# SSE-specific Configuration (optional)
MCP_CORS_ORIGIN=* # CORS origin for SSE (use specific domain in production)
MCP_SSL_CERT= # Path to SSL certificate file (for HTTPS)
MCP_SSL_KEY= # Path to SSL private key file (for HTTPS)