@inboxapi/cli 0.2.9 → 0.2.11

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 +22 -12
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -7,7 +7,7 @@ Give your AI agent its own email address. Send, receive, read, search, and reply
7
7
  Copy and paste this sentence into your agent:
8
8
 
9
9
  ```
10
- Install the `@inboxapi/cli` npm package globally and then register the `inboxapi` command as an MCP server named `inboxapi`.
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
13
  <details>
@@ -55,7 +55,7 @@ The CLI acts as a local bridge between your AI client and the [InboxAPI](https:/
55
55
  ## Installation
56
56
 
57
57
  ```bash
58
- npm install -g @inboxapi/cli
58
+ npm install -g @inboxapi/cli@latest
59
59
  ```
60
60
 
61
61
  Prebuilt binaries are included for:
@@ -66,6 +66,16 @@ Prebuilt binaries are included for:
66
66
  | Linux | x64, ARM64 |
67
67
  | Windows | x64 |
68
68
 
69
+ ## Updating
70
+
71
+ Run the same install command to update to the latest version:
72
+
73
+ ```bash
74
+ npm install -g @inboxapi/cli@latest
75
+ ```
76
+
77
+ The CLI also checks for updates automatically when running in proxy mode and installs them in the background.
78
+
69
79
  ## Getting Started
70
80
 
71
81
  Just start the proxy — an account is created automatically on first run
@@ -183,22 +193,22 @@ gemini mcp add inboxapi inboxapi --scope user
183
193
 
184
194
  **OpenCode:**
185
195
 
186
- Add to current project:
196
+ Run the interactive setup:
187
197
 
188
198
  ```bash
189
- opencode mcp add inboxapi inboxapi
199
+ opencode mcp add
190
200
  ```
191
201
 
192
- Add globally (available in all projects):
193
-
194
- ```bash
195
- opencode mcp add inboxapi inboxapi -s user
196
- ```
202
+ When prompted, enter:
203
+ - **Location:** Global
204
+ - **MCP server name:** inboxapi
205
+ - **MCP server type:** Local
206
+ - **Command to run:** inboxapi
197
207
 
198
208
  **Codex CLI:**
199
209
 
200
210
  ```bash
201
- codex mcp add inboxapi -- inboxapi
211
+ codex mcp add inboxapi inboxapi
202
212
  ```
203
213
 
204
214
  ## Development
@@ -226,7 +236,7 @@ Yes. No credit card, no trial period, no usage tiers. We're working on paid plan
226
236
 
227
237
  **How do you prevent spam and abuse?**
228
238
 
229
- Account creation requires proof-of-work. Each account can only email 5 unique external domains per week. Daily send quotas and rate limiting are enforced on every account. These constraints are structural — they're not policies, they're how the system works.
239
+ Account creation requires proof-of-work. Each account can only email 5 unique external email addresses per week. Daily send quotas and rate limiting are enforced on every account. These constraints are structural — they're not policies, they're how the system works.
230
240
 
231
241
  **What about prompt injection via email?**
232
242
 
@@ -256,7 +266,7 @@ Email reaches the entire existing internet — billions of people and businesses
256
266
 
257
267
  **What are the send limits?**
258
268
 
259
- Each account can email up to 5 unique external domains per week. Emails to other @inboxapi.ai addresses don't count against this limit. The limit resets weekly.
269
+ Each account can email up to 5 unique external email addresses per week. Emails to other @inboxapi.ai addresses don't count against this limit. The limit resets weekly.
260
270
 
261
271
  **What happens when I hit the limit?**
262
272
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inboxapi/cli",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "📧 Email for your AI 🤖",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -27,10 +27,10 @@
27
27
  "test": "cargo test"
28
28
  },
29
29
  "optionalDependencies": {
30
- "@inboxapi/cli-darwin-arm64": "0.2.9",
31
- "@inboxapi/cli-darwin-x64": "0.2.9",
32
- "@inboxapi/cli-linux-x64": "0.2.9",
33
- "@inboxapi/cli-linux-arm64": "0.2.9",
34
- "@inboxapi/cli-win32-x64": "0.2.9"
30
+ "@inboxapi/cli-darwin-arm64": "0.2.11",
31
+ "@inboxapi/cli-darwin-x64": "0.2.11",
32
+ "@inboxapi/cli-linux-x64": "0.2.11",
33
+ "@inboxapi/cli-linux-arm64": "0.2.11",
34
+ "@inboxapi/cli-win32-x64": "0.2.11"
35
35
  }
36
36
  }