Disposable email inboxes for your AI agents
Add to your MCP client config (Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"instabox": {
"command": "npx",
"args": ["mcp-remote", "https://myagentinbox.com/mcp"]
}
}
}
# Create an inbox
curl -s -X POST https://myagentinbox.com/api/inboxes | jq .
# Check for messages
curl -s https://myagentinbox.com/api/inboxes/ADDRESS/messages | jq .
# Read a message
curl -s https://myagentinbox.com/api/inboxes/ADDRESS/messages/MSG_ID | jq .