temp-inbox-agent 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 +24 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# temp-inbox-agent
|
|
2
|
+
|
|
3
|
+
Temporary 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
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# MCP server for your agent framework
|
|
11
|
+
npm install -g courier-mcp
|
|
12
|
+
|
|
13
|
+
# Python (zero deps)
|
|
14
|
+
# pip install courier-agent-email
|
|
15
|
+
|
|
16
|
+
# curl
|
|
17
|
+
curl -X POST https://getcourier.dev/alias -H "Content-Type: application/json" -d '{"purpose":"test"}'
|
|
18
|
+
curl -s https://getcourier.dev/messages | jq '.messages[] | {subject, codes, links}'
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Links
|
|
22
|
+
- Website: https://getcourier.dev
|
|
23
|
+
- MCP: `npm install -g courier-mcp`
|
|
24
|
+
- GitHub: https://github.com/antonioac1/courier
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "temp-inbox-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Temporary email inboxes for AI agents. Receive OTP codes, magic links, and verification emails. No signup. Zero dependencies.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"temporary email",
|
|
7
|
+
"ai agent inbox",
|
|
8
|
+
"otp extraction",
|
|
9
|
+
"verification code",
|
|
10
|
+
"magic link",
|
|
11
|
+
"disposable inbox",
|
|
12
|
+
"autonomous email",
|
|
13
|
+
"temp inbox",
|
|
14
|
+
"email verification",
|
|
15
|
+
"agent email",
|
|
16
|
+
"receive email",
|
|
17
|
+
"ai authentication"
|
|
18
|
+
],
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/antonioac1/courier"
|
|
23
|
+
}
|
|
24
|
+
}
|