autonomous-email 0.1.1 → 0.1.3
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 +28 -11
- package/package.json +7 -15
package/README.md
CHANGED
|
@@ -1,22 +1,39 @@
|
|
|
1
1
|
# autonomous-email
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Courier — durable email identity infrastructure for AI agents.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package is a **discovery/redirect alias** for [`courier-mcp`](https://www.npmjs.com/package/courier-mcp), which provides the actual MCP server.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**NOT temporary email. NOT burner inboxes. NOT disposable addresses.**
|
|
8
8
|
|
|
9
|
-
Courier gives
|
|
9
|
+
Courier gives your AI agent **durable, persistent, recoverable email identities** — the kind that survive agent memory loss, restart, and re-deployment. Your agent gets real SMTP inboxes that it can use to receive OTP codes, magic links, and verification emails, and keep its identity across sessions.
|
|
10
|
+
|
|
11
|
+
## How to use
|
|
10
12
|
|
|
11
13
|
```bash
|
|
12
|
-
#
|
|
14
|
+
# Install the Courier MCP server
|
|
13
15
|
npm install -g courier-mcp
|
|
16
|
+
```
|
|
14
17
|
|
|
15
|
-
|
|
16
|
-
pip install courier-agent-email
|
|
18
|
+
Then configure your agent framework (Hermes, Claude Code, Cursor, etc.) to use the `courier-mcp` server.
|
|
17
19
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
## Why Courier?
|
|
21
|
+
|
|
22
|
+
- **Durable identities** — inboxes persist across agent restarts
|
|
23
|
+
- **OTP/magic link extraction** — automatically parses incoming email
|
|
24
|
+
- **No Gmail API, no OAuth, no human intervention**
|
|
25
|
+
- **Zero-dependency Python client** also available: `pip install courier-agent-email`
|
|
26
|
+
|
|
27
|
+
## Related packages
|
|
28
|
+
|
|
29
|
+
- **courier-mcp** — The actual MCP server (install this)
|
|
30
|
+
- **temp-inbox-agent** — Alternative discovery alias
|
|
31
|
+
- **ai-inbox** — Alternative discovery alias
|
|
32
|
+
- **courier-protocol** — Core protocol package (`npm install courier-protocol`)
|
|
33
|
+
- **courier-agent-email** — PyPI package (`pip install courier-agent-email`)
|
|
34
|
+
|
|
35
|
+
## Links
|
|
21
36
|
|
|
22
|
-
|
|
37
|
+
Website: https://getcourier.dev
|
|
38
|
+
GitHub: https://github.com/antonioac1/courier
|
|
39
|
+
NPM: https://www.npmjs.com/package/courier-mcp
|
package/package.json
CHANGED
|
@@ -1,22 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autonomous-email",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Autonomous email
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"otp extraction",
|
|
9
|
-
"verification code",
|
|
10
|
-
"magic link",
|
|
11
|
-
"disposable inbox",
|
|
12
|
-
"temporary email",
|
|
13
|
-
"autonomous authentication",
|
|
14
|
-
"email verification",
|
|
15
|
-
"agent automation"
|
|
16
|
-
],
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Autonomous email identities for AI agents. Receive OTP codes, magic links, and verification emails without human intervention. Persistent, durable, recoverable. No signup.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": ["autonomous email", "ai agent email", "durable email identity", "otp extraction", "magic link", "persistent inbox", "autonomous authentication", "email verification", "agent identity", "recoverable identity"],
|
|
7
|
+
"author": "antonioac",
|
|
17
8
|
"license": "MIT",
|
|
9
|
+
"homepage": "https://getcourier.dev",
|
|
18
10
|
"repository": {
|
|
19
11
|
"type": "git",
|
|
20
|
-
"url": "https://github.com/antonioac1/courier"
|
|
12
|
+
"url": "git+https://github.com/antonioac1/courier.git"
|
|
21
13
|
}
|
|
22
14
|
}
|