Skip to main content
Glama

@mailsink/mcp

MailSink용 모델 컨텍스트 프로토콜(MCP) 서버 — AI 에이전트 및 테스트 자동화를 위한 프로그래밍 방식의 임시 이메일 수신함입니다.

일회용 주소 프로비저닝, 가입 이메일 대기, OTP 코드 및 매직 링크 추출, 작업 후 정리 등을 수행할 수 있는 8가지 도구를 에이전트에 제공합니다. Claude Code, Claude Desktop, Cursor, Windsurf 및 기타 MCP 지원 클라이언트에서 작동합니다.

설치

npm install -g @mailsink/mcp

또는 설치 없이 npx를 통해 실행하세요:

npx @mailsink/mcp

Related MCP server: mcp-imap

API 키 받기

  1. GitHub 계정으로 https://mailsink.dev/app에 로그인합니다.

  2. 일회성으로 표시되는 키를 복사합니다. 비밀번호 관리자나 .env 파일에 저장하세요.

  3. MCP 서버가 읽을 수 있도록 내보냅니다:

    export MAILSINK_API_KEY="msk_..."

무료 티어는 월 50개의 수신함을 제공하며 MCP를 포함합니다. Pro($15/월) 및 Team($49/월) 플랜은 수신함 제한을 해제하고, 이메일 크기 제한을 늘리며, TTL을 연장하고, 요청 속도를 높여줍니다. 가격 정책을 확인하세요.

클라이언트 구성

Claude Code

claude mcp add mailsink -- npx -y @mailsink/mcp

Claude Desktop / Cursor / Windsurf

클라이언트 구성 파일의 mcpServers 섹션에 추가하세요:

{
  "mcpServers": {
    "mailsink": {
      "command": "npx",
      "args": ["-y", "@mailsink/mcp"],
      "env": {
        "MAILSINK_API_KEY": "msk_..."
      }
    }
  }
}

클라이언트를 다시 시작하세요. 8개의 도구가 포함된 mailsink 서버가 나열된 것을 확인할 수 있습니다.

도구

도구

목적

create_inbox

일회용 주소를 프로비저닝합니다. email, id, expires_at을 반환합니다.

list_inboxes

계정의 활성 수신함을 나열합니다.

wait_for_email

이메일이 도착할 때까지 최대 timeout 초(최대 120초) 동안 대기합니다.

get_verification_code

수신함에서 가장 최근의 OTP를 추출합니다(찾을 때까지 또는 시간 초과 시까지 폴링).

get_verification_link

가장 최근의 매직 링크를 추출합니다.

list_messages

수신함에 있는 모든 메시지의 요약을 확인합니다.

get_message

ID별로 특정 메시지의 전체 내용을 가져옵니다.

delete_inbox

수신함을 즉시 삭제합니다.

에이전트 흐름 예시

> Sign me up for Figma, capture the verification code, confirm, and
> tell me the plan once you're in.

[agent invokes]
  create_inbox()                                → agent@codenotify.net
  [agent fills the Figma signup form with that address]
  wait_for_email(inbox_id)                      → blocks 30s…
                                                → returns email + OTP
  [agent types the OTP into the Figma form]
  delete_inbox(inbox_id)                        → cleanup

웹훅 연결이나 IMAP 자격 증명, MIME 파싱이 필요 없습니다.

환경 변수

  • MAILSINK_API_KEY (필수) — 계정의 API 키입니다.

  • MAILSINK_API_URL (선택 사항, 기본값 https://api.mailsink.dev) — 자체 호스팅 또는 개발용 API로 재정의할 수 있습니다.

소스

https://github.com/heocoi/mailsink/tree/main/mcp

라이선스

MIT — LICENSE를 참조하세요.

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (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
    D
    quality
    D
    maintenance
    An MCP server implementation that allows sending emails over MailPace's fast transactional email API.
    1
    1
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    A minimal MCP server for reading and sending emails via IMAP/SMTP, supporting multiple accounts in a single instance with zero external dependencies.
    1
  • A
    license
    A
    quality
    B
    maintenance
    MCP server for the Guerrilla Mail temporary/disposable email API. Spin up throwaway inboxes, poll for mail, and read messages from any MCP client.
    6
    15
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Shipmail MCP server for AI agent custom-domain email inboxes with REST API and webhooks.

  • Hosted email MCP for AI agents with inboxes, send/receive, memory, recovery, and credits.

  • MCP server for URL shortening and management

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/heocoi/mailsink-mcp'

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