We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dbankscard/jamf-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1.84 kB
# Jamf Configuration
JAMF_URL=https://your-jamf-instance.jamfcloud.com
JAMF_CLIENT_ID=your-client-id-here
JAMF_CLIENT_SECRET=your-client-secret-here
JAMF_USERNAME=your-username
JAMF_PASSWORD=your-password
# ChatGPT Connector Settings (POC)
NODE_ENV=development
OAUTH_PROVIDER=dev
JWT_SECRET=your-secret-key-here
# Server Configuration
PORT=3000
LOG_LEVEL=info
# Safety Settings
JAMF_READ_ONLY=false
# TLS/SSL Configuration
# WARNING: Only set to 'true' for development with self-signed certificates
# NEVER use in production as it disables certificate verification
JAMF_ALLOW_INSECURE=false
# Enhanced Error Handling (v1.1.0)
JAMF_USE_ENHANCED_MODE=true # Enable enhanced features
JAMF_MAX_RETRIES=3 # Maximum retry attempts
JAMF_RETRY_DELAY=1000 # Initial retry delay in milliseconds
JAMF_RETRY_MAX_DELAY=10000 # Maximum retry delay in milliseconds
JAMF_RETRY_BACKOFF_MULTIPLIER=2 # Exponential backoff multiplier
JAMF_DEBUG_MODE=false # Enable debug logging
# Advanced Features
JAMF_ENABLE_RETRY=true # Enable automatic retries (default: true when enhanced mode is on)
JAMF_ENABLE_RATE_LIMITING=false # Enable rate limiting to prevent API throttling
JAMF_ENABLE_CIRCUIT_BREAKER=false # Enable circuit breaker for failure protection
# Rate Limiting (optional)
RATE_LIMIT_WINDOW=900000
RATE_LIMIT_MAX=100
# CORS Settings (includes ChatGPT domains)
ALLOWED_ORIGINS=https://chat.openai.com,https://chatgpt.com
# HTTP Connection Pool Settings
HTTP_MAX_SOCKETS=50 # Max connections per host
HTTP_MAX_FREE_SOCKETS=10 # Max idle connections to keep
HTTP_TIMEOUT=60000 # Socket timeout in ms
HTTP_KEEPALIVE_TIMEOUT=30000 # Keep-alive timeout in ms
HTTP_ENABLE_METRICS=false # Enable connection pool metrics