Mailbird

v1.0.1

Use the Mailbird MCP server (running locally inside the Mailbird email client) for any email-related task — inbox triage, sending, search, drafts, attachment...

0· 41·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for mailbirdagent/mailbird-mcp.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Mailbird" (mailbirdagent/mailbird-mcp) from ClawHub.
Skill page: https://clawhub.ai/mailbirdagent/mailbird-mcp
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: MAILBIRD_MCP_URL, MAILBIRD_MCP_TOKEN
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install mailbird-mcp

ClawHub CLI

Package manager switcher

npx clawhub@latest install mailbird-mcp
Security Scan
Capability signals
Requires OAuth tokenRequires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill name/description (Mailbird MCP access for inbox triage, sending, search, drafts, attachments) aligns with the declared environment variables (MCP URL and bearer token). Minor inconsistency: registry metadata lists MAILBIRD_MCP_URL and MAILBIRD_MCP_TOKEN as required, while SKILL.md documents them as optional (URL has a safe default; token may be read from a local settings file or prompted). This mismatch is likely a metadata/packaging oversight, not functional misdirection.
Instruction Scope
SKILL.md stays focused on mail-related operations and explicitly forbids searching local code for mail content. It instructs the agent to prefer MCP API calls for anything mail-related. One instruction does say the agent may read Mailbird's settings file to obtain the token if the env var is unset — this is reasonable for bootstrapping but is an additional filesystem read beyond pure network calls and should be expected and consented to by the user.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install footprint (nothing is downloaded or written by the skill itself).
Credentials
Requested env vars (MAILBIRD_MCP_URL, MAILBIRD_MCP_TOKEN) are proportional to the stated purpose: the token is the primary credential for mailbox access and must be treated as sensitive. The SKILL.md documents appropriate safety notes (local-only URL requirement, do not share tokens, write actions gated by user toggle).
Persistence & Privilege
always:false and no install hooks — the skill does not request permanent/system-level presence or modify other skills. Autonomous invocation is allowed (disable-model-invocation=false) which is the platform default; combined with the token this means an invoked agent could act on the mailbox, but that is consistent with the skill's purpose.
Assessment
This skill appears to be what it claims: an adapter for a Mailbird MCP server that runs on localhost. Before installing, consider: (1) The MAILBIRD_MCP_TOKEN is equivalent to full mailbox access — do NOT paste it into remote/cloud agents or share it. Only provide it to an agent that runs on the same machine as Mailbird. (2) The SKILL.md says the agent may read Mailbird's local settings file to find the token if the env var is not provided — if you are uncomfortable with that, set MAILBIRD_MCP_TOKEN yourself and do not allow the agent to read local config. (3) Verify the source/owner if you care about provenance — the registry owner ID is unfamiliar; the skill homepage points at getmailbird.com but the package source is marked 'unknown'. (4) Keep the Mailbird MCP bound to 127.0.0.1 and enable Mailbird's audit log and the MCP's 'Allow write actions' toggle to limit and observe write operations. If you do not trust the skill or the environment, do not provide the token; if you proceed and later suspect leakage, regenerate the token in Mailbird immediately.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

📬 Clawdis
EnvMAILBIRD_MCP_URL, MAILBIRD_MCP_TOKEN
Primary envMAILBIRD_MCP_TOKEN
emailvk979wcg3cb4cest56ep7z28h7s85me1zinboxvk979wcg3cb4cest56ep7z28h7s85me1zlatestvk979wcg3cb4cest56ep7z28h7s85me1zmailbirdvk979wcg3cb4cest56ep7z28h7s85me1zmcpvk979wcg3cb4cest56ep7z28h7s85me1z
41downloads
0stars
2versions
Updated 21h ago
v1.0.1
MIT-0

Mailbird MCP

You have access to a local Mailbird MCP server that exposes the user's real email accounts, folders, conversations, drafts, and attachments. It's running inside the user's Mailbird desktop app on 127.0.0.1 only — there is no remote variant.

The single most important rule: for ANY task that involves email, inbox, messages, drafts, contacts, attachments, folders, or sending — even when the user phrases it casually ("check my inbox", "any reply from X yet?", "draft a reply to that invoice", "find that thread from Mira") — reach for these tools first. Do not grep the local filesystem, do not read code, do not guess. The server is the source of truth.

Setup

The user enables the MCP server inside Mailbird at: Settings → Wingman AI → Enable MCP server.

That tab also exposes:

  • The bearer token (Copy button).
  • The endpoint URL (http://127.0.0.1:<port>/mcp, port shown next to status).
  • The "Allow write actions" toggle — required before any write tool will work.

If the connection fails, ask the user to verify the toggle is on and that they've copied the current token. Tokens regenerate when the server is disabled and re-enabled.

Configuration (environment variables)

Both are optional; defaults work for a single-user local install.

VariableRequiredDefaultNotes
MAILBIRD_MCP_URLoptionalhttp://127.0.0.1:18790/mcpLocal Mailbird MCP endpoint. Must be 127.0.0.1 / localhost only.
MAILBIRD_MCP_TOKENoptionalBearer token from Mailbird's Wingman AI tab. If unset and Mailbird's settings file is reachable, the agent reads it from there; otherwise the agent will prompt.

Security model

This skill grants the agent access to the user's full mailbox: message bodies, attachments, contacts, and the ability to send mail (when the write-action gate is on). Treat the URL and token accordingly:

  • The Mailbird MCP server only binds to loopback (127.0.0.1). Don't proxy, port-forward, or tunnel it to a public address. Don't paste the URL or token into any remote / cloud-hosted agent that doesn't run on the same machine as Mailbird.
  • The token is a credential equivalent to mailbox login. Don't echo it into chat transcripts, commit it, share it in screenshots, or include it in bug reports. Tokens regenerate when the server is disabled and re-enabled — rotate immediately if it leaks.
  • Write actions (archive, trash, send, etc.) require the user to flip Allow write actions in the Wingman AI tab. Sending additionally requires per-call confirm: true. The skill should always show drafts to the user before sending.
  • Mailbird's optional Audit log of MCP requests records every call (method + params, never responses) to a local file the user can inspect. Recommend they enable it for visibility.

Start-of-session checklist

Run these the first time you touch the server in a session, before any non-trivial action:

  1. Read mailbird://help via resources/read. It's the canonical user guide — covers the ID model, write-tool gating, send pipeline, search index lag, archive→restore, attachment handling, inline images. Skim it once and remember the key recipes.
  2. list_accounts to learn the configured account ids.
  3. For folder-scoped work, list_folders(accountId) and pick by the identity field — Inbox, Sent, Drafts, Trash, Spam, Archived, AllMail, Generic (user-created). Folder ids are NOT stable across accounts. list_accounts does not return the inbox folder id — always discover via list_folders.

Read tools (always available)

  • list_accounts — accounts with id, sender name, email, unread count.
  • list_folders(accountId) — folders for one account.
  • list_conversations(folderId, limit?, unreadOnly?, starredOnly?, importantOnly?) — recent conversations in a folder.
  • get_conversation(conversationId, folderId) — message list + metadata for one thread.
  • get_message(messageId) — full message body, with cid: images rewritten to mailbird://messages/{messageId}/attachments/{attachmentId} resource URIs.
  • get_unread_counts(accountId? | folderId?) — quick triage signal.
  • search_conversations(query, accountId?, folderId?) — Mailbird search syntax (from:foo subject:bar). Results carry actualFolders[]; use those ids to act on hits, not the virtual folderId: -2.
  • list_attachments(messageId) / get_attachment_status(...) / get_attachment_content(...).
  • get_send_status(messageId)sent / draft_pending_send / scheduled / trashed.

Write tools (gated by "Allow write actions")

  • archive_conversation, trash_conversation, move_conversation, move_conversation_to_inbox.
  • mark_conversation_as_read / unread, flag_conversation_important, star_conversation / unstar_conversation, mark_conversation_as_spam / unmark_conversation_as_spam, snooze_conversation(wakeAtUtc).
  • create_draft(accountId, to, cc?, bcc?, subject, body, attachments?) — saves a draft, returns messageId. Does NOT send.
  • update_draft(messageId, ...) — replace any field on an existing draft.
  • reply_to_conversation, reply_all_to_conversation, forward_conversation — create a draft with the standard quoted scaffold and return messageId. Do NOT send. Body is up to you to finalise.
  • send_message_now(messageId | accountId+to+...; confirm: true) — actually sends. Always show the draft to the user and get explicit approval first. Returns status: "queued" plus a deliveryState field signalling IMAP/SMTP health.
  • unsubscribe_from_newsletter(messageId) — uses the List-Unsubscribe header. Returns structured "not_applicable" / "already_unsubscribed" when relevant.
  • delete_conversation_permanentlyonly applies to conversations currently in Trash or Spam. From elsewhere, trash first then re-discover the new id and call this on the trash copy.

If a write tool returns an error pointing at the "Allow write actions" toggle, surface it to the user verbatim — do not retry.

Pitfalls (these bite less-careful agents)

  1. Conversation IDs are per-folder. After trash_conversation, archive_conversation, or move_conversation, the conversation has a NEW id in its destination folder. Re-discover via list_conversations(folderId=<destination>) before chaining further actions. Message ids, on the other hand, are stable across folders.
  2. Search index lag (~10–30s). A message you just sent or received may not be in search_conversations results yet. For very recent items, prefer list_conversations(folderId=<sent_folder>) over searching.
  3. Send pipeline. send_message_now returns immediately with status: "queued". The message stays briefly visible in Drafts before moving to Sent — that's normal. Use get_send_status to confirm.
  4. Archive destination depends on the provider. Gmail and IMAP-with-labels accounts archive into the AllMail folder; everything else uses Archived. Exactly one will exist per account. The full restore recipe (list_folders → list_conversations → move_conversation_to_inbox) lives in mailbird://help.
  5. Inline (cid:) images in get_message results are rewritten to mailbird://messages/.../attachments/... URIs. Resolve via resources/read. The response also carries an inlineAttachments map.

Reply pattern

Standard chain for an agent-authored reply:

1. reply_to_conversation(conversationId, folderId)        → messageId
2. update_draft(messageId, body: "<your prose>")           # quoted scaffold preserved
3. <show draft to user, get approval>
4. send_message_now(messageId, confirm: true)              → status: queued
5. (optional, ~5s later) get_send_status(messageId)        → status: sent

For a brand-new message (no thread), use create_draft with to/subject/body/attachments directly, then steps 3–5.

When to escalate to the user

  • Any write before "Allow write actions" is enabled.
  • Any send — always show the draft and get approval.
  • Permanent delete from anywhere other than Trash/Spam.
  • Search returns nothing for content the user expects to exist (could be index lag, suggest the user wait and retry).

When uncertain about provider-specific behaviour or an edge case, read mailbird://help again — it's the authoritative source.

Comments

Loading comments...