@inboxapi/cli 0.1.5 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -87,7 +87,11 @@ claude mcp add inboxapi inboxapi
87
87
  **Gemini CLI:**
88
88
 
89
89
  ```bash
90
+ # Add to current project
90
91
  gemini mcp add inboxapi inboxapi
92
+
93
+ # Add system-wide (available in all directories)
94
+ gemini mcp add inboxapi inboxapi --scope user
91
95
  ```
92
96
 
93
97
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inboxapi/cli",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "STDIO Proxy for InboxAPI MCP service",
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.1.5",
31
- "@inboxapi/cli-darwin-x64": "0.1.5",
32
- "@inboxapi/cli-linux-x64": "0.1.5",
33
- "@inboxapi/cli-linux-arm64": "0.1.5",
34
- "@inboxapi/cli-win32-x64": "0.1.5"
30
+ "@inboxapi/cli-darwin-arm64": "0.2.0",
31
+ "@inboxapi/cli-darwin-x64": "0.2.0",
32
+ "@inboxapi/cli-linux-x64": "0.2.0",
33
+ "@inboxapi/cli-linux-arm64": "0.2.0",
34
+ "@inboxapi/cli-win32-x64": "0.2.0"
35
35
  }
36
36
  }