Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-smtp": {
"args": [
"-y",
"@samihalawa/mcp-server-smtp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides email sending capabilities for Claude and other MCP-compatible AI assistants.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@samihalawa/mcp-server-smtp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @samihalawa/mcp-server-smtp against OSV.dev.
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 Mcp Server Smtp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides email sending capabilities for Claude and other MCP-compatible AI assistants.
To install SMTP Email Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @samihalawa/mcp-server-smtp --client claude
# Clone the repository
git clone https://github.com/samihalawa/mcp-server-smtp.git
cd mcp-server-smtp
# Install dependencies
npm install
# Build the server
npm run build
npm start
Add the server to your MCP configuration:
{
"servers": {
"smtp-email-server": {
"command": "/path/to/node",
"args": ["/path/to/mcp-server-smtp/build/index.js"],
"enabled": true,
"port": 3007,
"environment": {
"NODE_PATH": "/path/to/node_modules",
"PATH": "/usr/local/bin:/usr/bin:/bin"
}
}
}
}
Send an email to one or more recipients.
Parameters:
to: Array of recipients with email and optional namesubject: Email subjectbody: Email body (HTML supported)from: (Optional) Sender email and namecc: (Optional) CC recipientsbcc: (Optional) BCC recipientstemplateId: (Optional) ID of a template to usetemplateData: (Optional) Data to populate template variablessmtpConfigId: (Optional) ID of the SMTP configuration to useSend emails to multiple recipients in batches.
Parameters:
recipients: Array of recipients with email and optional namesubject: Email subjectbody: Email body (HTML supported)from: (Optional) Sender email and namecc: (Optional) CC recipientsbcc: (Optional) BCC recipientstemplateId: (Optional) ID of a template to usetemplateData: (Optional) Data to populate template variablesbatchSize: (Optional) Number of emails to send in each batchdelayBetweenBatches: (Optional) Delay in milliseconds between batchessmtpConfigId: (Optional) ID of the SMTP configuration to useGet all configured SMTP servers.
Parameters: None
Add a new SMTP server configuration.
Parameters:
name: Name for the configurationhost: SMTP server hostnameport: SMTP server portsecure: Whether to use SSL/TLSauth: Authentication credentials (user and pass)isDefault: (Optional) Whether this is the default configurationUpdate an existing SMTP server configuration.
Parameters:
id: ID of the configuration to updatename: Name for the configurationhost: SMTP server hostnameport: SMTP server portsecure: Whether to use SSL/TLSauth: Authentication credentials (user and pass)isDefault: (Optional) Whether this is the default configurationDelete an SMTP server configuration.
Parameters:
id: ID of the configuration to deleteGet all email templates.
Parameters: None
Add a new email template.
Parameters:
name: Template namesubject: Email subject templatebody: Email body template (HTML supported)isDefault: (Optional) Whether this is the defau