ai-inbox 0.1.0
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 +16 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# ai-inbox
|
|
2
|
+
|
|
3
|
+
Email inboxes for AI agents. Receive OTP codes, magic links, and verification emails. No signup.
|
|
4
|
+
|
|
5
|
+
**This is an alias package.** The underlying project is Courier.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# MCP (any agent framework)
|
|
11
|
+
npm install -g courier-mcp
|
|
12
|
+
|
|
13
|
+
# Then in Python or curl:
|
|
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
|
+
```
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ai-inbox",
|
|
3
|
+
"version": "0.1.0",
|
|
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
|
+
],
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/antonioac1/courier"
|
|
23
|
+
}
|
|
24
|
+
}
|