autonomous-email 0.1.0 → 0.1.1
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 +16 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
# autonomous-email
|
|
2
2
|
|
|
3
|
-
Autonomous email
|
|
3
|
+
**Autonomous email for AI agents.** Receive OTP codes, magic links, verification emails. No signup. No human intervention.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## What this is
|
|
6
6
|
|
|
7
|
-
A
|
|
7
|
+
A discovery alias for **Courier** — the email layer agents can actually use.
|
|
8
8
|
|
|
9
|
+
Courier gives agents disposable email inboxes. No Gmail API. No OAuth. No dashboard.
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
# MCP (for Hermes, Claude Code, Cursor)
|
|
13
|
+
npm install -g courier-mcp
|
|
14
|
+
|
|
15
|
+
# Python
|
|
16
|
+
pip install courier-agent-email
|
|
17
|
+
|
|
18
|
+
# curl
|
|
19
|
+
curl -X POST https://getcourier.dev/alias -H "Content-Type: application/json" -d '{"purpose":"test"}'
|
|
9
20
|
```
|
|
10
|
-
|
|
11
|
-
|
|
21
|
+
|
|
22
|
+
Related: **courier-mcp**, **temp-inbox-agent**, **ai-inbox**, **courier-protocol**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autonomous-email",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Autonomous email handling for AI agents. Receive OTP codes, magic links, and verification emails without human intervention. No signup.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"autonomous email",
|