Mailinator Cli MCP Server

CLI tool and MCP server to interact with Mailinator disposable email service

Local serverstdio

What is the Mailinator Cli MCP server?

CLI tool and MCP server to interact with Mailinator disposable email service. Exposed over MCP by the mailinator cli mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

A Node.js CLI tool and MCP (Model Context Protocol) server to interact with the Mailinator disposable email service. List emails in any inbox and retrieve individual messages in various formats, either from the command line or through AI assistants like Claude Desktop.

Its toolset

Everything the assistant can do here goes through one of these:

Adding it to your client

mailinator-cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration

You will need one environment variable: MAILINATOR_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js >= 18.0.0 - Internet connection (to access Mailinator API)

When to reach for it

Plenty of team communication servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Mailinator Cli's toolset — Inbox, Email, list_inbox and 3 more — is a fair guide to whether it matches your workflow. It is maintained by manybrain; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mailinator cli mcp server does with a few real requests.

Available tools

ToolWhat it does
InboxGET https://api.mailinator.com/cli/v3/domains/{domain}/inboxes/{inbox_name}
EmailGET https://api.mailinator.com/cli/v3/domains/{domain}/messages/{message_id}?format={format}
list_inboxThe list_inbox tool exposed by this server.
get_emailThe get_email tool exposed by this server.
WildcardsThe Wildcards tool exposed by this server.
DomainsThe Domains tool exposed by this server.

How to install the Mailinator Cli MCP server

{
  "mcpServers": {
    "mailinator-cli": {
      "command": "npx",
      "args": ["-y", "mailinator-cli"],
      "env": {
        "MAILINATOR_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js >= 18.0.0 - Internet connection (to access Mailinator API)
VariableDescriptionRequired
MAILINATOR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Mailinator Cli to Inbox.
  • Use Mailinator Cli to Email.
  • Use Mailinator Cli to list inbox.

Frequently asked questions

It connects Mailinator Cli to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (Inbox, Email, list_inbox, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Mailinator Cli directly.