Provides endpoints to send emails, manage contacts, schedule emails, and set up notifications via the aigeon.ai MCP server.
Configuration
View docs{
"mcpServers": {
"henroger-email-mcp": {
"url": "https://mcp.aigeon.ai/api/v1/mcp"
}
}
}You can send emails through the aigeon.ai API by installing an MCP server integration named email-mcp. This server exposes a set of email-related functions you can call from MCP clients, making it easy to send emails, manage contacts, and schedule messages from your workflows.
To use email-mcp, configure it as an MCP server in your MCP client (Cursor or Claude). The server exposes a set of tools you can call to send emails, fetch contacts, add new contacts, schedule emails, and set up notifications. Use the HTTP endpoint and provide your API key to authorize requests.
Prerequisites: you need a running MCP client that supports HTTP MCP servers (Cursor, Claude, or another MCP client). You will also need an API key for the aigeon.ai service to authorize requests.
Install and configure the MCP server in Cursor by editing your MCP configuration file and adding the HTTP server entry shown below.
"email-mcp": {
"type": "http",
"url": "https://mcp.aigeon.ai/api/v1/mcp",
"headers": {
"Authorization": "Bearer YOUR_KEY"
}
}Add the server under the mcpServers list if you use Cursor. You can also configure Claude to point to the same remote MCP endpoint. Replace YOUR_KEY with your actual API key. If you have multiple MCP servers, you can add multiple configurations.
The email-mcp server provides multiple actions you can call from MCP clients.
Send Email: send_email — Send an email to one or more recipients. Parameters: emails (list of strings), subject (string), html_body (optional string), text_body (optional string).
Get Contacts: get_contacts — Retrieve your saved email contacts. Parameters: none.
Add Contact: add_contact — Add a new contact. Parameters: name (string), email (string).
Schedule Send Email: schedule_send_email — Schedule an email to be sent at a specific time. Parameters: schdedule_timestamp (integer Unix timestamp), emails (list of strings), subject (string), html_body (optional string), text_body (optional string).
Set email notification: set_email_notification — Setup an email notification for future events.
Send an email to one or more recipients. Requires emails, subject, and optional html_body or text_body.
Retrieve your saved email contacts. No parameters required.
Add a new contact with a name and email.
Schedule an email to be sent at a specific Unix timestamp for given recipients.
Configure email notifications for future events.