ai-inbox 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.
Files changed (2) hide show
  1. package/README.md +30 -9
  2. package/package.json +7 -17
package/README.md CHANGED
@@ -1,18 +1,39 @@
1
1
  # ai-inbox
2
2
 
3
- **AI agent email inboxes.** Receive OTP codes, magic links, and verification emails.
4
- No signup. No Gmail API. No OAuth.
3
+ **Courier durable email identity infrastructure for AI agents.**
5
4
 
6
- ## What this is
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
- A discovery alias for **Courier** agent-native email infrastructure.
9
- Courier is the email layer agents can actually use.
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
- # Quick start
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
- Related: **courier-mcp**, **temp-inbox-agent**, **autonomous-email**, **courier-protocol**
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,24 +1,14 @@
1
1
  {
2
2
  "name": "ai-inbox",
3
- "version": "0.1.1",
4
- "description": "Email inboxes for AI agents. Receive OTP codes, magic links, and verification emails autonomously. No signup. Zero dependencies.",
5
- "keywords": [
6
- "ai inbox",
7
- "agent email",
8
- "temporary email",
9
- "otp extraction",
10
- "verification code",
11
- "magic link",
12
- "disposable inbox",
13
- "autonomous email",
14
- "email verification",
15
- "ai authentication",
16
- "receive email",
17
- "agent tools"
18
- ],
3
+ "version": "0.1.3",
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
+ "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",
19
8
  "license": "MIT",
9
+ "homepage": "https://getcourier.dev",
20
10
  "repository": {
21
11
  "type": "git",
22
- "url": "https://github.com/antonioac1/courier"
12
+ "url": "git+https://github.com/antonioac1/courier.git"
23
13
  }
24
14
  }