temp-inbox-agent 0.1.0 → 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 +34 -9
- package/package.json +9 -11
package/README.md
CHANGED
|
@@ -1,24 +1,49 @@
|
|
|
1
1
|
# temp-inbox-agent
|
|
2
2
|
|
|
3
|
-
Temporary email inboxes for AI agents
|
|
3
|
+
**Temporary email inboxes for AI agents.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Agents need email to receive OTP codes, magic links, and verification emails.
|
|
6
|
+
Courier gives your agent a disposable inbox in under 5 seconds. No signup.
|
|
6
7
|
|
|
7
|
-
##
|
|
8
|
+
## What this package does
|
|
9
|
+
|
|
10
|
+
This is a discovery alias for **Courier** — the email layer agents can actually use.
|
|
11
|
+
|
|
12
|
+
Courier is **not** a notification service, not an outbound email platform, and not Gmail.
|
|
13
|
+
It is **agent-native email**: disposable inboxes that receive real SMTP mail and
|
|
14
|
+
automatically extract OTP codes, magic links, and verification URLs.
|
|
15
|
+
|
|
16
|
+
## How to use
|
|
8
17
|
|
|
9
18
|
```bash
|
|
10
|
-
# MCP server for
|
|
19
|
+
# Install the MCP server (for Hermes, Claude Code, Cursor)
|
|
11
20
|
npm install -g courier-mcp
|
|
12
21
|
|
|
13
22
|
# Python (zero deps)
|
|
14
|
-
|
|
23
|
+
pip install courier-agent-email
|
|
15
24
|
|
|
16
|
-
# curl
|
|
25
|
+
# Or just use curl
|
|
17
26
|
curl -X POST https://getcourier.dev/alias -H "Content-Type: application/json" -d '{"purpose":"test"}'
|
|
18
27
|
curl -s https://getcourier.dev/messages | jq '.messages[] | {subject, codes, links}'
|
|
19
28
|
```
|
|
20
29
|
|
|
30
|
+
## Why agents need this
|
|
31
|
+
|
|
32
|
+
- Receive OTP / 2FA codes for autonomous signup
|
|
33
|
+
- Receive magic links for passwordless login
|
|
34
|
+
- Receive password reset links for account recovery
|
|
35
|
+
- Receive verification emails for account confirmation
|
|
36
|
+
- No Gmail API, no OAuth, no human intervention
|
|
37
|
+
|
|
38
|
+
## Related packages
|
|
39
|
+
|
|
40
|
+
- **courier-mcp** — MCP server for agent frameworks
|
|
41
|
+
- **courier-protocol** — Core protocol package
|
|
42
|
+
- **ai-inbox** — Alternative discovery alias
|
|
43
|
+
- **autonomous-email** — Alternative discovery alias
|
|
44
|
+
- **courier-agent-email** — PyPI package (`pip install`)
|
|
45
|
+
|
|
21
46
|
## Links
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
47
|
+
|
|
48
|
+
Website: https://getcourier.dev
|
|
49
|
+
GitHub: https://github.com/antonioac1/courier
|
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "temp-inbox-agent",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.2",
|
|
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
5
|
"keywords": [
|
|
6
|
-
"
|
|
7
|
-
"ai agent
|
|
6
|
+
"durable email identity",
|
|
7
|
+
"ai agent email",
|
|
8
8
|
"otp extraction",
|
|
9
|
-
"verification code",
|
|
10
9
|
"magic link",
|
|
11
|
-
"
|
|
10
|
+
"agent identity",
|
|
11
|
+
"persistent inbox",
|
|
12
12
|
"autonomous email",
|
|
13
|
-
"temp inbox",
|
|
14
13
|
"email verification",
|
|
15
|
-
"agent
|
|
16
|
-
"
|
|
17
|
-
"ai authentication"
|
|
14
|
+
"agent tools",
|
|
15
|
+
"ai inbox"
|
|
18
16
|
],
|
|
19
17
|
"license": "MIT",
|
|
20
18
|
"repository": {
|
|
21
19
|
"type": "git",
|
|
22
20
|
"url": "https://github.com/antonioac1/courier"
|
|
23
21
|
}
|
|
24
|
-
}
|
|
22
|
+
}
|