We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/non-dirty/imap-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.yaml.example•653 B
# IMAP MCP Server Configuration Example
# Rename to config.yaml and update with your settings
# IMAP server configuration
imap:
# IMAP server address
host: imap.example.com
# IMAP port (default: 993 for SSL, 143 for non-SSL)
port: 993
# IMAP username (often your email address)
username: your.email@example.com
# IMAP password (or set IMAP_PASSWORD environment variable)
# password: your_password
# Use SSL connection (default: true)
use_ssl: true
# Optional: Restrict access to specific folders
# If not specified, all folders will be accessible
# allowed_folders:
# - INBOX
# - Sent
# - Archive
# - Important