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.
Files changed (2) hide show
  1. package/README.md +17 -25
  2. package/package.json +7 -15
package/README.md CHANGED
@@ -1,49 +1,41 @@
1
1
  # temp-inbox-agent
2
2
 
3
- **Temporary email inboxes for AI agents.**
3
+ **Courier — durable email identity infrastructure for AI agents.**
4
4
 
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.
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
- ## What this package does
7
+ **NOT temporary email. NOT burner inboxes. NOT disposable addresses.**
9
8
 
10
- This is a discovery alias for **Courier** — the email layer agents can actually use.
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 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.
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 (for Hermes, Claude Code, Cursor)
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
- ## Why agents need this
20
+ Then configure your agent framework (Hermes, Claude Code, Cursor, etc.) to use the `courier-mcp` server.
21
+
22
+ ## Why Courier?
31
23
 
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
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 for agent frameworks
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-agent-email** — PyPI package (`pip install`)
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.2",
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
- "keywords": [
6
- "durable email identity",
7
- "ai agent email",
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
+ }