The AgentMail MCP Server provides tools for the AgentMail API.
Get your API key from AgentMail
{
"mcpServers": {
"AgentMail": {
"command": "npx",
"args": ["-y", "agentmail-mcp"],
"env": {
"AGENTMAIL_API_KEY": "YOUR_API_KEY"
}
}
}
}By default, all available tools are loaded. You can selectively enable specific tools using the --tools argument with a comma-separated list of tool names.
{
"mcpServers": {
"AgentMail": {
"command": "npx",
"args": ["-y", "agentmail-mcp", "--tools", "get_message,send_message,reply_to_message"],
"env": {
"AGENTMAIL_API_KEY": "YOUR_API_KEY"
}
}
}
}