@inboxapi/cli 0.2.21 → 0.2.22
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 +21 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -10,9 +10,11 @@ Copy and paste this sentence into your agent:
|
|
|
10
10
|
Install the `@inboxapi/cli@latest` npm package globally and then register the `inboxapi` command as an MCP server named `inboxapi`.
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
<summary>Table of Contents</summary>
|
|
13
|
+
---
|
|
15
14
|
|
|
15
|
+
### Table of Contents
|
|
16
|
+
|
|
17
|
+
- [How it works](#how-it-works)
|
|
16
18
|
- [Technical details](#technical-details)
|
|
17
19
|
- [Good to know](#good-to-know)
|
|
18
20
|
- [Installation](#installation)
|
|
@@ -25,7 +27,7 @@ Install the `@inboxapi/cli@latest` npm package globally and then register the `i
|
|
|
25
27
|
- [License](#license)
|
|
26
28
|
- [Disclaimer](#disclaimer)
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
---
|
|
29
31
|
|
|
30
32
|
### How it works
|
|
31
33
|
|
|
@@ -347,6 +349,22 @@ Every inbound email is classified into one of four trust levels:
|
|
|
347
349
|
| Unverified | Valid SPF/DKIM but sender not in addressbook | Use caution |
|
|
348
350
|
| Suspicious | Authentication failed or unknown sender | Flag and confirm before acting |
|
|
349
351
|
|
|
352
|
+
### What AI model should I use with InboxAPI?
|
|
353
|
+
|
|
354
|
+
Your model must support **tool/function calling** — MCP requires this. We recommend a minimum **32K token context window** to comfortably fit InboxAPI's 19 tool definitions alongside conversation history and email content.
|
|
355
|
+
|
|
356
|
+
**Model recommendations by tier:**
|
|
357
|
+
|
|
358
|
+
| Tier | Anthropic | OpenAI | Google |
|
|
359
|
+
|------|-----------|--------|--------|
|
|
360
|
+
| Good | Haiku 4.5+ | GPT-4.1 mini+, GPT-4.1 nano+ | Gemini 2.5 Flash+ |
|
|
361
|
+
| Recommended | Sonnet 4.5+ | GPT-4.1+, GPT-5 mini+ | Gemini 2.5 Pro+ |
|
|
362
|
+
| Best | Opus 4.5+ | GPT-5+, GPT-5.2+ | Gemini 2.5 Pro+ |
|
|
363
|
+
|
|
364
|
+
**Datamarking overhead:** InboxAPI applies datamarking (spotlighting) to untrusted email content, replacing whitespace with Unicode marker characters. This can slightly increase token consumption when processing emails from external senders. Models with larger context windows handle this more comfortably.
|
|
365
|
+
|
|
366
|
+
**What won't work:** Models without tool/function calling support, models with context windows under 16K tokens, and very small local models (under ~7B parameters) that lack reliable tool calling. These will struggle to fit InboxAPI's 19 tool definitions and maintain useful conversation history.
|
|
367
|
+
|
|
350
368
|
### What stops an agent from buying things or authorizing transactions via email?
|
|
351
369
|
|
|
352
370
|
InboxAPI is a communication channel, not an execution environment. It can deliver an email, but it can't click buttons, enter credit card numbers, or interact with external systems. The risk of unauthorized actions comes from how an agent is configured and what other tools it has access to — not from its email.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inboxapi/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.22",
|
|
4
4
|
"description": "📧 Email for your AI 🤖",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"test": "cargo test"
|
|
29
29
|
},
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@inboxapi/cli-darwin-arm64": "0.2.
|
|
32
|
-
"@inboxapi/cli-darwin-x64": "0.2.
|
|
33
|
-
"@inboxapi/cli-linux-arm64": "0.2.
|
|
34
|
-
"@inboxapi/cli-linux-x64": "0.2.
|
|
35
|
-
"@inboxapi/cli-win32-x64": "0.2.
|
|
31
|
+
"@inboxapi/cli-darwin-arm64": "0.2.22",
|
|
32
|
+
"@inboxapi/cli-darwin-x64": "0.2.22",
|
|
33
|
+
"@inboxapi/cli-linux-arm64": "0.2.22",
|
|
34
|
+
"@inboxapi/cli-linux-x64": "0.2.22",
|
|
35
|
+
"@inboxapi/cli-win32-x64": "0.2.22"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@inboxapi/cli": "^0.2.
|
|
38
|
+
"@inboxapi/cli": "^0.2.22"
|
|
39
39
|
}
|
|
40
40
|
}
|