Skip to main content
Glama

MCP Agent Mail

gunicorn.conf.py758 B
"""Sample gunicorn configuration for MCP Agent Mail.""" import multiprocessing from pathlib import Path # Bind to same interface/port as default settings; override via GUNICORN_CMD_ARGS if needed. bind = "0.0.0.0:8765" # Use number of workers proportional to cores; uvicorn workers handle async FastAPI app. workers = multiprocessing.cpu_count() * 2 + 1 worker_class = "uvicorn.workers.UvicornWorker" # Graceful timeouts to match long running tasks. keepalive = 5 graceful_timeout = 60 timeout = 120 # Location for PID/log files (customize as desired). pidfile = str(Path("/var/run/mcp-agent-mail/gunicorn.pid")) errorlog = "-" # stderr accesslog = "-" # stdout loglevel = "info" # Optional: forward standard proxy headers. forwarded_allow_ips = "*"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dicklesworthstone/mcp_agent_mail'

If you have feedback or need assistance with the MCP directory API, please join our Discord server