
Zyntra - Temp e-mails MCP
from manybrain
MCP server for e-mail testing: create disposable inboxes, wait for delivery, and extract e-mail content or links - all from your AI agent or test automation workflow.
On this page
Connect your AI coding assistant directly to Zyntra's email API using the Model Context Protocol (MCP). With MCP, your AI agent can list, read, and delete emails in your Zyntra inboxes β no manual API calls required.
Perfect for: automating email verification flows, extracting OTP codes, cleaning up test inboxes β all from a natural language prompt inside Claude, Cursor, or Windsurf.
How to Get an API Keyβ
-
Sign up or log in at app.zyntra.app
-
Go to Settings β API Keys
-
Click Create Key, give it a name, and copy the value
Keep this key handy β you'll add it to your AI tool's config below.
Connect Your AI Toolβ
The Zyntra MCP server is hosted at https://mcp.zyntra.app. Add the following to your AI tool's MCP configuration:
Claude Desktopβ
Open ~/Library/Application Support/Claude/claude_desktop_config.json and add:
{
"mcpServers": {
"zyntra": {
"url": "https://mcp.zyntra.app/mcp",
"headers": {
"X-API-Key": "your_api_key_here"
}
}
}
}
Cursorβ
Open Settings β MCP and add a new server:
{
"zyntra": {
"url": "https://mcp.zyntra.app/mcp",
"headers": {
"X-API-Key": "your_api_key_here"
}
}
}
Windsurf / Clineβ
In your MCP configuration file (.mcp.json or via the UI), add:
---
## Available Toolsβ
Once connected, your AI agent has access to 5 tools:
| Tool | Description |
| ----------------- | ----------------------------------------------------------- |
| list\_emails | List emails in a mailbox with pagination |
| get\_email | Get full email content including HTML, headers, attachments |
| delete\_email | Delete an email from an inbox |
| get\_last\_email | Get the most recently received email |
| list\_attachments | List attachments for a specific email |
See the Tool Reference for full details and Examples for real automation recipes.
This tool doesn't publish a standard install command β the repository README on GitHub covers its setup.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under Apache-2.0β you can use, modify, and redistribute it under that license's terms.