MCP Email
Related Servers
Alternatives to MCP Email
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityCmaintenanceEnables LLMs to read, send, and manage emails via POP3 and SMTP with TLS support.5-
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with email accounts via IMAP and SMTP, supporting mailbox listing, email search, retrieval, sending, and management.MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to send, read, and manage emails via SMTP and IMAP, with support for attachments, threads, and mailbox organization.1617 npm1MIT
- FlicenseBqualityDmaintenanceEnables AI models to send, receive, search, and manage emails via SMTP/IMAP, including support for attachments, contacts, and advanced search.18-
- AlicenseNot gradedqualityDmaintenanceEnables AI to send, read, search, delete and reply to emails through SMTP or Gmail API, supporting common email services like QQ, 163, Gmail and Outlook with HTML/text formats and attachments.20 npm1ISC
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to connect to any email provider via IMAP/SMTP, supporting account management and email operations like listing, sending, and marking emails.MIT
TDQS
Scored across 5 tools
pollEmails lists all inbox emails (subset, no body), while getEmailsById retrieves specific emails by ID. The distinction is mostly clear, though both return lists of email objects and the full-body retrieval behavior of getEmailsById is not explicit. Delete and send tools are clearly separate.
All tools use camelCase with a verb-first pattern (pollEmails, getEmailsById, deleteEmailsById, sendTextEmail, sendHtmlEmail). The retrieval verbs 'poll' and 'get' differ slightly, but overall naming is predictable and consistent.
Five tools provide a well-scoped minimal email client covering listing, ID-based retrieval, deletion, and two sending formats. Each tool has a clear purpose and the count is appropriate for the stated scope.
Core create/read/delete operations are present, but update operations (e.g., mark read/unread, flag, move) and search are missing. It is also unclear whether getEmailsById returns full email bodies, leaving a potential gap for reading message content.