Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcpemailserver": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A C# Model Context Protocol (MCP) server that provides email sending capabilities using SMTP.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for McpEmailServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A C# Model Context Protocol (MCP) server that provides email sending capabilities using SMTP.
Clone the repository
Set the following environment variables for SMTP configuration:
SMTP_SERVER (e.g., smtp.gmail.com)SMTP_PORT (e.g., 587)SMTP_USERNAME (your email address)SMTP_PASSWORD (your app password)Mcp Email Server can be run using the following command:
"mcp-email-server": {
"type": "stdio",
"command": "dotnet",
"args": ["run",
"--project",
"YOUR_PATH/smtp-dotnet-mcp-server/McpEmailServer.csproj"
],
"env": {
"SMTP_SERVER": "localhost",
"SMTP_PORT": "25",
"SMTP_USERNAME": "",
"SMTP_PASSWORD": ""
}
}
or
"mcp-email-server": {
"type": "stdio",
"command": "cmd",
"args": ["/c",
"YOUR_PATH/smtp-dotnet-mcp-server/McpEmailServer.exe"
],
"env": {
"SMTP_SERVER": "localhost",
"SMTP_PORT": "25",
"SMTP_USERNAME": "",
"SMTP_PASSWORD": ""
}
}
If you're using Gmail, you'll need to:
dotnet run
The server provides the following MCP tools:
SendEmail: Sends a plain text email
to: Recipient email addresssubject: Email subjectbody: Email body textSendHtmlEmail: Sends an HTML email
to: Recipient email addresssubject: Email subjecthtmlBody: HTML content for the email body