courier-mcp 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -0
- package/package.json +4 -2
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# courier-mcp
|
|
2
|
+
|
|
3
|
+
**MCP server for AI agent email.** Create disposable inboxes, receive OTP codes, extract magic links, handle verification emails.
|
|
4
|
+
|
|
5
|
+
For Hermes, Claude Code, Cursor, and any MCP-compatible agent framework.
|
|
6
|
+
|
|
7
|
+
## Quick start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g courier-mcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Then add to your MCP config:
|
|
14
|
+
```json
|
|
15
|
+
{
|
|
16
|
+
"mcpServers": {
|
|
17
|
+
"courier": {
|
|
18
|
+
"command": "courier-mcp"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Tools
|
|
25
|
+
|
|
26
|
+
| Tool | Description |
|
|
27
|
+
|------|-------------|
|
|
28
|
+
| `create_inbox` | Create a temporary email inbox. No signup. |
|
|
29
|
+
| `wait_for_email` | Poll until an email arrives. Auto-retry. |
|
|
30
|
+
| `extract_otp` | Get verification codes from inbox. |
|
|
31
|
+
| `extract_magic_link` | Get magic links from inbox. |
|
|
32
|
+
| `get_inbox` | Check inbox contents. |
|
|
33
|
+
|
|
34
|
+
## Why agents need this
|
|
35
|
+
|
|
36
|
+
AI agents can't use Gmail. They can't do OAuth flows. They can't click "verify email" links in a browser.
|
|
37
|
+
|
|
38
|
+
Courier gives agents disposable email inboxes that receive real SMTP mail and automatically extract:
|
|
39
|
+
- **OTP / 2FA codes** for autonomous signup
|
|
40
|
+
- **Magic links** for passwordless login
|
|
41
|
+
- **Password reset URLs** for account recovery
|
|
42
|
+
- **Verification emails** for account confirmation
|
|
43
|
+
|
|
44
|
+
No signup. No API keys. No Gmail API. No OAuth.
|
|
45
|
+
|
|
46
|
+
## Related packages
|
|
47
|
+
|
|
48
|
+
- **temp-inbox-agent** — Semantic discovery alias
|
|
49
|
+
- **ai-inbox** — Semantic discovery alias
|
|
50
|
+
- **autonomous-email** — Semantic discovery alias
|
|
51
|
+
- **courier-protocol** — Core protocol
|
|
52
|
+
- **courier-agent-email** — Python client (pip)
|
|
53
|
+
|
|
54
|
+
## Links
|
|
55
|
+
|
|
56
|
+
Website: https://getcourier.dev
|
|
57
|
+
API: https://getcourier.dev/capabilities
|
|
58
|
+
GitHub: https://github.com/antonioac1/courier
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "courier-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "MCP server for temporary AI agent email inboxes. Create disposable inboxes, receive OTP codes, extract magic links, handle verification emails. For Hermes, Claude Code, Cursor, and OpenAI Agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"courier-mcp": "./server.mjs"
|
|
8
8
|
},
|
|
9
|
-
"files": [
|
|
9
|
+
"files": [
|
|
10
|
+
"server.mjs"
|
|
11
|
+
],
|
|
10
12
|
"keywords": [
|
|
11
13
|
"mcp",
|
|
12
14
|
"temporary email",
|