mailflat-mcp
OfficialMailFlat SDKs
MailFlat용 공식 클라이언트 라이브러리: 코드가 소유하는 이메일 인박스로, 한 줄 OTP 조회를 제공합니다. 테스트 스위트(Selenium, pytest, Playwright)와 AI 에이전트를 위해 제작되었습니다.
주소는 영구적이므로 스위트가 실행할 때마다 새 주소가 필요하지 않습니다. 메시지만 선택한 보존 기간에 따라 만료됩니다.
이 저장소에는 오픈소스 SDK만 포함되어 있습니다. MailFlat 서비스 자체는 클로즈드소스입니다.
패키지
패키지 | 용도 | 설치 |
Python |
| |
JavaScript / TypeScript |
| |
AI 어시스턴트(Claude, Cursor) — MCP |
| |
Vercel AI SDK 에이전트 |
| |
| LangChain 에이전트 |
|
| Java / Selenium | JitPack을 통해 — 아래 참조 |
각 클라이언트는 동일한 /api/v1 Agent API에 대한 얇고 타입이 지정된 래퍼이므로 동일하게 동작합니다. 대시보드(Agents → API keys)에서 계정 키(mf_live_…)로 인증하세요.
Related MCP server: useblip/email
Java / Selenium (JitPack)
JitPack은
groupId를 GitHub 소유자에서 파생합니다. 이 저장소는 2026년 8월 공식MailFlat계정으로 이동했으므로v0.4.4부터의 릴리스는com.github.MailFlat:mailflat-sdks로 게시됩니다. 이전 버전은 여전히 이전 좌표com.github.onderyentar21:mailflat-sdks로 확인됩니다. 이전 저장소는 해당 버전을 위해 유지됩니다. 클라이언트는 다음으로 Maven Central(net.mailflat)로 이동할 예정이며, 이로써 소유자 결합이 종료됩니다.
<repositories>
<repository><id>jitpack.io</id><url>https://jitpack.io</url></repository>
</repositories>
<dependency>
<groupId>com.github.MailFlat</groupId>
<artifactId>mailflat-sdks</artifactId>
<version>v0.4.5</version>
</dependency>MailFlat mf = new MailFlat("mf_live_…");
Inbox inbox = mf.create("signup");
driver.findElement(By.id("email")).sendKeys(inbox.address());
String otp = inbox.waitForOtp(30); // polls until the code arrives
driver.findElement(By.id("code")).sendKeys(otp);빠른 예제
Python
from mailflat import MailFlat
mf = MailFlat(api_key="mf_live_…")
inbox = mf.create(label="signup")
otp = inbox.wait_for_otp(timeout=30)JavaScript / TypeScript
import { MailFlat } from "@mailflat/sdk";
const mf = new MailFlat({ apiKey: process.env.MAILFLAT_API_KEY });
const inbox = await mf.create({ label: "signup" });
const otp = await inbox.waitForOtp({ timeout: 30000 });라이선스
MIT. 전체 텍스트는 저장소 루트의 LICENSE에 있으며, 각 패키지 디렉터리에는 동일한 사본이 포함되어 있습니다.
Maintenance
Related MCP Servers
- AlicenseBqualityCmaintenanceDisposable email MCP server for autonomous AI agents. Create labeled temporary inboxes, wait for verification emails, extract OTP codes and confirmation links — zero human intervention required.6MIT
- AlicenseAqualityCmaintenanceMCP server for disposable email — create inboxes, receive emails, and extract OTP codes. Let your AI agent sign up for services, wait for verification emails, and extract codes autonomously.7691MIT
- AlicenseNot gradedqualityAmaintenanceOpen-source, self-hosted Inbox-as-a-Service API for AI agents. It enables agents to manage email inboxes, send/receive emails, search messages, and wait for replies via REST or MCP.27Apache 2.0
- AlicenseNot gradedqualityBmaintenanceAn MCP server that provides AI agents with a persistent, agent-native email mailbox for sending, receiving, and managing emails through bounded-context retrieval, idempotent operations, and explicit acknowledgement.MIT
Related MCP Connectors
Give an agent its own inbox: send, receive, and pull signup codes from real email.
Hosted email MCP for AI agents with inboxes, send/receive, memory, recovery, and credits.
Give an AI agent its own email address: send, reply, read, and wait for mail.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MailFlat/mailflat-sdks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server