Are you the author? Sign in to claim
email-send-mcp
A Model Context Protocol server that provides email functionality. This server enables LLMs to compose and send emails, as well as search for attachments within specified directories.
send_email - Sends emails based on the provided subject, body, and receiver.
receiver (array of strings, required): List of recipient email addressesbody (string, required): The main content of the emailsubject (string, required): The subject line of the emailattachments (array of strings or string, optional): Email attachments (filenames)search_attachments - Searches for files in a specified directory that match a given pattern.
pattern (string, required): The text pattern to search for in file namessend_email
receiver (required): The list of recipient email addressesbody (required): The main content of the emailsubject (required): The subject line of the emailattachments (optional): Email attachmentssearch_attachments
pattern (required): The text pattern to search for in file namesAdd to your cursor/claude settings:
{
"mcpServers": {
"email_send_mcp": {
"command": "uvx",
"args": [
"email-send-mcp"
"--dir",
"C:\\Users\\YourUserName\\Desktop"
],
"env": {
"SENDER": "namexxx@gmail.com",
"PASSWORD": "tuogk......."
}
}
}
}
The server supports the following attachment file types:
{
"receiver": ["recipient@example.com"],
"subject": "Test Email from MCP Server",
"body": "This is a test email sent via the MCP Email Server.",
"attachments": ["document.pdf", "image.jpg"]
}
{
"pattern": "report"
}
We encourage contributions to help expand and improve the MCP Email Server. Whether you want to add new tools, enhance existing functionality, or improve documentation, your input is valuable.
For examples of other MCP servers and implementation patterns, see: https://github.com/modelcontextprotocol/servers
Pull requests are welcome! Feel free to contribute new ideas, bug fixes, or enhancements to make the MCP Email Server even more powerful and useful.
MCP Email Server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows