We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chillitray/zintlr-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•2 KiB
# Zintlr MCP Server Configuration
# Copy this file to .env and fill in the values
# ALL variables are REQUIRED - the application will not start without them
# =============================================================================
# ZINTLR API CONFIGURATION
# =============================================================================
# Direct API URL (bypassing auth.zintlr.com proxy)
ZINTLR_API_BASE_URL=https://api.zintlr.com
# Frontend URL for OAuth redirects
ZINTLR_FRONTEND_URL=https://auth.zintlr.com
# =============================================================================
# TOKEN DECRYPTION (Same secrets as Next.js proxy)
# =============================================================================
# JWT secret for token decryption (same as process.env.CIPHER in Next.js)
CIPHER_SECRET=your-cipher-secret-here
# Captcha token for API authentication
CAPTCHA_TOKEN=your-captcha-token-here
# =============================================================================
# MCP SERVER CONFIGURATION
# =============================================================================
# Public URL of this MCP server (for OAuth redirects)
MCP_SERVER_URL=https://mcp.zintlr.com
# MCP Protocol version
MCP_PROTOCOL_VERSION=2025-06-18
# Server info
MCP_SERVER_NAME=zintlr-mcp-server
MCP_SERVER_VERSION=1.0.0
# =============================================================================
# SESSION STORAGE (Redis)
# =============================================================================
# Redis connection URL
# Use redis://localhost:6379 for local development
# Use redis://redis:6379 for Docker Compose (container networking)
REDIS_URL=redis://redis:6379
# Session expiry time in seconds (1 hour = 3600)
SESSION_EXPIRE_SECONDS=3600
# =============================================================================
# SERVER SETTINGS
# =============================================================================
# Server host and port
HOST=0.0.0.0
PORT=8000
# Debug mode (set to false in production)
DEBUG=false