Skip to main content
Glama
minutemailco

MinuteMail MCP

Official
by minutemailco

mcp-server

MCP(Model Context Protocol)サーバーは、MinuteMail公開APIをツールとして公開します。AIエージェントとMCPクライアントは、mm-api-gatewayを通じてMinuteMailのメールボックス、メール、添付ファイル、ドメイン、チーム、モックOAuthアイデンティティを操作できます。

  • エンドポイント: https://mcp.minutemail.co/mcp(Streamable HTTP、プロトコルリビジョン 2025-06-18

  • 認証: MCPクライアントのAuthorization: Bearer mmak_...ヘッダーは、api-gatewayにそのまま転送されます。このサーバーは認証情報を一切保持しません。スコープとクォータは、通常のAPIクライアントと同様にすべてゲートウェイが適用します。

  • ステートレス: セッションもサーバープッシュSSEもありません(GET /mcpDELETE /mcpは405を返します)。ヘルスチェック: GET /health

##Tool surface (39 tools)

すべてのツールは、api-gatewayの/v1ルートと1:1で対応しています。すべての呼び出しにはBearer APIキーが必要です。書き込み操作には、対応するスコープ(mailboxesdomainsteamidentities)が必要です。

Mailboxes(mailboxes スコープ)

ツール

ゲートウェールート

mm_list_mailboxes

GET /v1/mailboxes

mm_create_mailbox

POST /v1/mailboxes(所有者はキー所有者に強制され、ドメインはテナントデフォルトになります)

mm_get_mailbox / mm_delete_mailbox

GET / DELETE /v1/mailboxes/{id}

mm_bulk_delete_mailboxes

DELETE /v1/mailboxes

mm_list_mails / mm_inject_test_mail

GET / POST /v1/mailboxes/{id}/mails(multipart)

mm_get_mail / mm_delete_mail / mm_bulk_delete_mails

…/mails/{mailId}

mm_list_attachments / mm_add_attachment / mm_get_attachment / mm_delete_attachment / mm_bulk_delete_attachments

…/attachments

Archived mailboxes(mailboxes スコープ)

mm_list_archived_mailboxes, mm_get_archived_mailbox, mm_delete_archived_mailbox, mm_reactivate_archived_mailbox.

Domains(domains スコープ)

mm_list_domains, mm_register_domain, mm_verify_domain, mm_delete_domain.

Team(team スコープ)

mm_list_members, mm_add_member, mm_get_member, mm_delete_member, mm_create_invitation, mm_list_invitations, mm_delete_invitation.

Mock identities(identities スコープ)

mm_list_identities, mm_create_identity, mm_get_identity, mm_delete_identity, mm_list_oauth_clients, mm_create_oauth_client, mm_get_oauth_client, mm_delete_oauth_client, mm_rotate_client_secret.

Not exposed

  • /v1/api-keys CRUD — APIキー管理はMCPを介して公開されません。キーはWebアプリから管理してください。

  • /internal/* — 内部専用。/metricsはスクレイピング用にPrometheusメトリクス(runtime go_*/process_*カウンター)を提供します。METRICS.mdを参照してください。

Example

curl -s https://mcp.minutemail.co/mcp \
  -H 'Authorization: Bearer mmak_XXXXXXXX' \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"mm_create_mailbox","arguments":{"expiresIn":30}}}'

ツールの結果は、ゲートウェイのJSONレスポンスを保持するMCPテキストコンテンツとして返されます。2xx以外のゲートウェイレスポンスは、isError: trueの結果となり、HTTPステータスとボディが含まれます(401無効なキー、403スコープ/ドメイン、429残数表示付きクォータ、502上流停止)。

Related MCP server: SandMail — Disposable Email API for AI Agents

Configuration

Env var

Default

Purpose

PORT

8080

リッスンポート

API_BASE

http://mm-api-gateway:80

api-gatewayのベースURL(クラスタ内)

LOG_LEVEL

warn

debug/info/warn/error

LOG_FORMAT

json

json/text

PROFILE

dev

デプロイプロファイルラベル

Development

Go 1.23。標準ライブラリに加えて、/metrics用にprometheus/client_golangを使用します。MinuteMailサービス標準に従います(mm-mailbox-serviceを参照)。

go test ./...     # unit tests
go vet ./...
go run .          # local server on :8080
A
license - permissive license
Not graded
quality - not tested
A
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

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
    D
    maintenance
    Create disposable email inboxes, extract OTP codes in 15 languages, and receive webhooks — all from your AI agent. One call: create inbox → wait for email → get the verification code. Supports 7 domains, email forwarding, and HMAC-signed webhooks with OTP included in payload. Free tier available.
    8
    10
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Programmatic email deliverability testing for AI agents. Create inbox placement tests across Gmail, Outlook, Yahoo, Mail.ru, Yandex — get per-provider placement (Inbox/Spam/Promotions), SPF/DKIM/DMARC auth, Rspamd & SpamAssassin verdicts, DNS health (MX, PTR, DNSBL), and live SSE results.
    5
    50
    1
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Real email and SMS for AI agents. Run a local mail server with disposable inboxes — agents send and receive real email, fetch verification codes, and drive a real inbox without going through any third-party email API.
    100
    192
    MIT

View all related MCP servers

Related MCP Connectors

  • A webhook inbox for agents: one call returns a live URL. Mock, verify, inspect and replay.

  • Email for AI agents — send, receive as a webhook, manage domains, templates, routing.

  • AI email inbox and sending tools with attachments, search, live events, and webhooks.

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/minutemailco/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server