@inboxapi/cli 0.2.3 → 0.2.5

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 +17 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # InboxAPI CLI
2
2
 
3
- Give your AI agent its own email address. Send, receive, read, search, and reply to emails — right from Claude, Codex, Gemini, or any MCP-compatible AI client. No email server to run, no SMTP to configure.
3
+ Give your AI agent its own email address. Send, receive, read, search, and reply to emails — right from Claude, OpenCode, Codex, Gemini, or any MCP-compatible AI client. No email server to run, no SMTP to configure.
4
4
 
5
- **Quick Setup (Claude Code, Gemini CLI, etc.):**
5
+ **Quick Setup (Claude Code, Gemini CLI, OpenCode, etc.):**
6
6
 
7
7
  Copy and paste this sentence into your agent:
8
8
 
@@ -13,7 +13,7 @@ Install the `@inboxapi/cli` npm package globally and then register the `inboxapi
13
13
  ### How it works
14
14
 
15
15
  1. Install the CLI
16
- 2. Connect it to your AI client (Claude Desktop, Claude Code, Gemini CLI, etc.)
16
+ 2. Connect it to your AI client (Claude Desktop, Claude Code, Gemini CLI, OpenCode, etc.)
17
17
  3. Your AI can now use email — no code or API keys needed
18
18
 
19
19
  An account with a unique email address is created automatically on first run. Your AI can then:
@@ -141,6 +141,20 @@ Add system-wide (available in all directories):
141
141
  gemini mcp add inboxapi inboxapi --scope user
142
142
  ```
143
143
 
144
+ **OpenCode:**
145
+
146
+ Add to current project:
147
+
148
+ ```bash
149
+ opencode mcp add inboxapi inboxapi
150
+ ```
151
+
152
+ Add globally (available in all projects):
153
+
154
+ ```bash
155
+ opencode mcp add inboxapi inboxapi -s user
156
+ ```
157
+
144
158
  **Codex CLI:**
145
159
 
146
160
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inboxapi/cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
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.3",
31
- "@inboxapi/cli-darwin-x64": "0.2.3",
32
- "@inboxapi/cli-linux-x64": "0.2.3",
33
- "@inboxapi/cli-linux-arm64": "0.2.3",
34
- "@inboxapi/cli-win32-x64": "0.2.3"
30
+ "@inboxapi/cli-darwin-arm64": "0.2.5",
31
+ "@inboxapi/cli-darwin-x64": "0.2.5",
32
+ "@inboxapi/cli-linux-x64": "0.2.5",
33
+ "@inboxapi/cli-linux-arm64": "0.2.5",
34
+ "@inboxapi/cli-win32-x64": "0.2.5"
35
35
  }
36
36
  }