Skip to main content
Glama
MailFlat

mailflat-mcp

Official

MailFlat SDKs

Offizielle Client-Bibliotheken für MailFlat: E-Mail-Postfächer, die Ihr Code besitzt, mit einzeiligem OTP-Abruf. Entwickelt für Test-Suiten (Selenium, pytest, Playwright) und KI-Agenten.

Adressen sind dauerhaft, sodass eine Suite nicht für jeden Lauf eine neue benötigt. Nur die Nachrichten verfallen, innerhalb eines von Ihnen gewählten Aufbewahrungszeitraums.

Dieses Repository enthält nur die Open-Source-SDKs. Der MailFlat-Dienst selbst ist Closed-Source.

Pakete

Paket

Für

Installation

mailflat

Python

pip install mailflat

@mailflat/sdk

JavaScript / TypeScript

npm i @mailflat/sdk

mailflat-mcp

KI-Assistenten (Claude, Cursor) — MCP

uvx mailflat-mcp

@mailflat/ai-sdk

Vercel AI SDK-Agenten

npm i @mailflat/ai-sdk

mailflat.langchain

LangChain-Agenten

pip install "mailflat[langchain]"

mailflat-sdk (Java)

Java / Selenium

über JitPack — siehe unten

Jeder Client ist ein dünner, typisierter Wrapper über dieselbe /api/v1 Agent API, daher verhalten sie sich identisch. Authentifizieren Sie sich mit Ihrem Kontoschlüssel (mf_live_…) über das Dashboard (Agents → API-Schlüssel).

Related MCP server: useblip/email

Java / Selenium (JitPack)

JitPack leitet die groupId vom GitHub-Besitzer ab. Dieses Repository ist im August 2026 zum offiziellen MailFlat-Konto umgezogen, daher veröffentlichen Releases ab v0.4.4 als com.github.MailFlat:mailflat-sdks. Frühere Versionen werden weiterhin unter der alten Koordinate com.github.onderyentar21:mailflat-sdks aufgelöst; das alte Repository bleibt für sie bestehen. Der Client wird als Nächstes auf Maven Central (net.mailflat) umziehen, was die Besitzerkopplung beendet.

<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);

Schnellbeispiele

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 });

Lizenz

MIT. Der vollständige Text befindet sich in LICENSE im Stammverzeichnis des Repositorys; jedes Paketverzeichnis enthält eine identische Kopie.

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
2Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    B
    quality
    C
    maintenance
    Disposable 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.
    6
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    MCP 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.
    7
    69
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Open-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.
    27
    Apache 2.0
  • A
    license
    Not graded
    quality
    B
    maintenance
    An 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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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