@inboxapi/cli 0.1.5 → 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 +8 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -81,13 +81,21 @@ 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:**
88
92
 
89
93
  ```bash
94
+ # Add to current project
90
95
  gemini mcp add inboxapi inboxapi
96
+
97
+ # Add system-wide (available in all directories)
98
+ gemini mcp add inboxapi inboxapi --scope user
91
99
  ```
92
100
 
93
101
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inboxapi/cli",
3
- "version": "0.1.5",
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.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.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
  }