This MCP server enables you to send emails using AWS SES directly from Cursor or Claude Desktop, eliminating the need for copy-pasting. It supports plain text and HTML emails with features like CC, BCC, reply-to, and email scheduling.
Before setting up the server, ensure you have:
Install aws-ses-mcp for Claude Desktop automatically using Smithery:
npx -y @smithery/cli install @omd01/aws-ses-mcp --client claude
git clone https://github.com/omd01/aws-ses-mcp.git
cd aws-ses-mcp
npm install
npm run build
Create a file called email.md
with content in this format:
{
"to": "[email protected]",
"subject": "Test!",
"text": "This is a test email.",
"cc": ["[email protected]"],
"bcc": ["[email protected]"]
}
Go to Cursor Settings → MCP → Add new MCP server
Configure with these settings:
aws-ses-mcp
(or your preferred name)command
node ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js \
--aws-access-key-id=YOUR_AWS_ACCESS_KEY_ID \
--aws-secret-access-key=YOUR_AWS_SECRET_ACCESS_KEY \
--aws-region=YOUR_AWS_REGION \
--sender=YOUR_SENDER_EMAIL \
--reply-to=REPLY_TO_EMAIL
Add this configuration to your MCP config:
{
"mcpServers": {
"aws-ses-mcp": {
"command": "node",
"args": ["ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js"],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY": "YOUR_AWS_SECRET_ACCESS_KEY",
"AWS_REGION": "YOUR_AWS_REGION",
"SENDER_EMAIL_ADDRESS": "YOUR_SENDER_EMAIL",
"REPLY_TO_EMAIL_ADDRESSES": "REPLY_TO_EMAILS_COMMA_SEPARATED"
}
}
}
}
email.md
with your email contentIf you encounter issues:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.