guerrillamail-mcp
by cv3inx
README.md
# guerrillamail-mcp
[](https://www.npmjs.com/package/guerrillamail-mcp)
[](https://www.npmjs.com/package/guerrillamail-mcp)
[](./LICENSE)
[](https://nodejs.org)
MCP server for the [Guerrilla Mail](https://www.guerrillamail.com/) temporary/disposable email API. Spin up throwaway inboxes, poll for mail, and read messages from any MCP client — Claude Desktop, Claude Code, Cursor, or any other.
**Zero config. No API key. One command.**
```bash
npx -y guerrillamail-mcp
```
## Why
Need a throwaway email inside an AI workflow — signup testing, OTP capture, scratch inbox — without leaving the agent? This wires Guerrilla Mail's disposable inboxes straight into the Model Context Protocol so your agent can create an address, watch for mail, and read it, all on its own.
## Install & usage
Run directly with npx — no install needed:
```bash
npx -y guerrillamail-mcp
```
### Claude Desktop
Add to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"guerrillamail": {
"command": "npx",
"args": ["-y", "guerrillamail-mcp"]
}
}
}
```
### Claude Code CLI
```bash
claude mcp add guerrillamail -- npx -y guerrillamail-mcp
```
## Tools
| Tool | Description | Inputs |
|------|-------------|--------|
| `get_email_address` | Get a new disposable address and start a session. | `lang` (optional, default `"en"`) |
| `set_email_user` | Set the local part of the address for the session. | `email_user` (required) |
| `check_inbox` | Check the inbox; poll only newer mail with `seq`. | `seq` (optional, default `"0"`) |
| `fetch_email` | Fetch the full body of one email (HTML stripped). | `email_id` (required) |
| `delete_emails` | Delete one or more emails. | `email_ids` (required, `string[]`) |
| `forget_me` | Forget the session and clear local state. | none |
## Notes
- Session state (`sid_token` + `PHPSESSID` cookie) is held in memory for the life of the process.
- No API key required. Uses the public Guerrilla Mail AJAX endpoint.
## License
MIT
TDQS
A3.9/5.0
Scored across 6 tools
Disambiguation5/5
Each tool has a distinct purpose: checking inbox, deleting emails, fetching full emails, clearing session, getting an address, and setting user. No overlap or ambiguity.
Naming Consistency5/5
All tool names follow a consistent verb_noun pattern in snake_case (e.g., check_inbox, delete_emails, fetch_email). No mixing of styles.
Tool Count5/5
6 tools is well-scoped for a disposable email service. It covers core operations without being too few or too many.
Completeness5/5
The set covers the full lifecycle: address acquisition, inbox polling, email retrieval, deletion, and session management. No critical gaps for the domain.
Maintenance
ActivityInactive
ResponsivenessNo issues