ai-inbox 0.1.2 → 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 +30 -9
- package/package.json +7 -15
package/README.md
CHANGED
|
@@ -1,18 +1,39 @@
|
|
|
1
1
|
# ai-inbox
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
No signup. No Gmail API. No OAuth.
|
|
3
|
+
**Courier — durable email identity infrastructure for AI agents.**
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
This package is a **discovery/redirect alias** for [`courier-mcp`](https://www.npmjs.com/package/courier-mcp), which provides the actual MCP server.
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
**NOT temporary email. NOT burner inboxes. NOT disposable addresses.**
|
|
8
|
+
|
|
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
|
|
14
|
-
curl -X POST https://getcourier.dev/alias -H "Content-Type: application/json" -d '{"purpose":"test"}'
|
|
15
|
-
curl -s https://getcourier.dev/messages | jq '.messages[] | {subject, codes, links}'
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Then configure your agent framework (Hermes, Claude Code, Cursor, etc.) to use the `courier-mcp` server.
|
|
19
|
+
|
|
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
|
+
- **autonomous-email** — 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
|
|
36
|
+
|
|
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": "ai-inbox",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Durable AI agent email inboxes. Receive OTP codes, magic links, and verification emails autonomously. Persistent agent identity that survives memory loss. No signup.",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"durable email identity",
|
|
9
|
-
"otp extraction",
|
|
10
|
-
"magic link",
|
|
11
|
-
"persistent inbox",
|
|
12
|
-
"autonomous email",
|
|
13
|
-
"email verification",
|
|
14
|
-
"ai authentication",
|
|
15
|
-
"agent identity"
|
|
16
|
-
],
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": ["ai inbox", "agent email", "durable email identity", "otp extraction", "magic link", "persistent inbox", "autonomous email", "email verification", "ai authentication", "agent 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
|
+
}
|