temp-inbox-agent 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 +17 -25
- package/package.json +7 -15
package/README.md
CHANGED
|
@@ -1,49 +1,41 @@
|
|
|
1
1
|
# temp-inbox-agent
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Courier — durable email identity infrastructure for AI agents.**
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
Courier gives your agent a disposable inbox in under 5 seconds. No signup.
|
|
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
|
-
|
|
7
|
+
**NOT temporary email. NOT burner inboxes. NOT disposable addresses.**
|
|
9
8
|
|
|
10
|
-
|
|
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.
|
|
11
10
|
|
|
12
|
-
Courier
|
|
13
|
-
It is **agent-native email**: disposable inboxes that receive real SMTP mail and
|
|
14
|
-
automatically extract OTP codes, magic links, and verification URLs.
|
|
11
|
+
> **Note:** Despite the package name, Courier provides **durable**, not temporary, email identities. The package name is a legacy alias — the actual service is `courier-mcp`.
|
|
15
12
|
|
|
16
13
|
## How to use
|
|
17
14
|
|
|
18
15
|
```bash
|
|
19
|
-
# Install the MCP server
|
|
16
|
+
# Install the Courier MCP server
|
|
20
17
|
npm install -g courier-mcp
|
|
21
|
-
|
|
22
|
-
# Python (zero deps)
|
|
23
|
-
pip install courier-agent-email
|
|
24
|
-
|
|
25
|
-
# Or just use curl
|
|
26
|
-
curl -X POST https://getcourier.dev/alias -H "Content-Type: application/json" -d '{"purpose":"test"}'
|
|
27
|
-
curl -s https://getcourier.dev/messages | jq '.messages[] | {subject, codes, links}'
|
|
28
18
|
```
|
|
29
19
|
|
|
30
|
-
|
|
20
|
+
Then configure your agent framework (Hermes, Claude Code, Cursor, etc.) to use the `courier-mcp` server.
|
|
21
|
+
|
|
22
|
+
## Why Courier?
|
|
31
23
|
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
- No Gmail API, no OAuth, no human intervention
|
|
24
|
+
- **Durable identities** — inboxes persist across agent restarts
|
|
25
|
+
- **OTP/magic link extraction** — automatically parses incoming email
|
|
26
|
+
- **No Gmail API, no OAuth, no human intervention**
|
|
27
|
+
- **Zero-dependency Python client** also available: `pip install courier-agent-email`
|
|
37
28
|
|
|
38
29
|
## Related packages
|
|
39
30
|
|
|
40
|
-
- **courier-mcp** — MCP server
|
|
41
|
-
- **courier-protocol** — Core protocol package
|
|
31
|
+
- **courier-mcp** — The actual MCP server (install this)
|
|
42
32
|
- **ai-inbox** — Alternative discovery alias
|
|
43
33
|
- **autonomous-email** — Alternative discovery alias
|
|
44
|
-
- **courier-
|
|
34
|
+
- **courier-protocol** — Core protocol package (`npm install courier-protocol`)
|
|
35
|
+
- **courier-agent-email** — PyPI package (`pip install courier-agent-email`)
|
|
45
36
|
|
|
46
37
|
## Links
|
|
47
38
|
|
|
48
39
|
Website: https://getcourier.dev
|
|
49
40
|
GitHub: https://github.com/antonioac1/courier
|
|
41
|
+
NPM: https://www.npmjs.com/package/courier-mcp
|
package/package.json
CHANGED
|
@@ -1,22 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "temp-inbox-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Durable email inboxes for AI agents. Persistent agent email identities for OTP codes, magic links, and verification emails. No signup. Zero dependencies.",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"otp extraction",
|
|
9
|
-
"magic link",
|
|
10
|
-
"agent identity",
|
|
11
|
-
"persistent inbox",
|
|
12
|
-
"autonomous email",
|
|
13
|
-
"email verification",
|
|
14
|
-
"agent tools",
|
|
15
|
-
"ai inbox"
|
|
16
|
-
],
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": ["durable email identity", "ai agent email", "otp extraction", "magic link", "agent identity", "persistent inbox", "autonomous email", "email verification", "agent tools", "ai inbox"],
|
|
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
|
+
}
|