@inboxapi/cli 0.1.6 → 0.1.7

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
@@ -81,7 +81,11 @@ InboxAPI CLI works as an MCP STDIO transport. Point your MCP client at the `inbo
81
81
  **Claude Code:**
82
82
 
83
83
  ```bash
84
+ # Add to current project
84
85
  claude mcp add inboxapi inboxapi
86
+
87
+ # Add globally (available in all projects)
88
+ claude mcp add inboxapi inboxapi -s user
85
89
  ```
86
90
 
87
91
  **Gemini CLI:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inboxapi/cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
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.6",
31
- "@inboxapi/cli-darwin-x64": "0.1.6",
32
- "@inboxapi/cli-linux-x64": "0.1.6",
33
- "@inboxapi/cli-linux-arm64": "0.1.6",
34
- "@inboxapi/cli-win32-x64": "0.1.6"
30
+ "@inboxapi/cli-darwin-arm64": "0.1.7",
31
+ "@inboxapi/cli-darwin-x64": "0.1.7",
32
+ "@inboxapi/cli-linux-x64": "0.1.7",
33
+ "@inboxapi/cli-linux-arm64": "0.1.7",
34
+ "@inboxapi/cli-win32-x64": "0.1.7"
35
35
  }
36
36
  }