@osanoai/multicli 1.5.2 → 1.5.4

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 +19 -12
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Osano AI - Multi CLI MCP
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@osanoai/multicli?color=cb0000)](https://www.npmjs.com/package/@osanoai/multicli)
4
+ [![Tests](https://img.shields.io/github/actions/workflow/status/osanoai/multicli/tests.yml?branch=main&label=tests)](https://github.com/osanoai/multicli/actions/workflows/tests.yml)
5
+ [![Scan](https://img.shields.io/github/actions/workflow/status/osanoai/multicli/scan.yml?branch=main&label=security%20scan)](https://github.com/osanoai/multicli/actions/workflows/scan.yml)
6
+ [![GitHub release](https://img.shields.io/github/v/release/osanoai/multicli)](https://github.com/osanoai/multicli/releases/latest)
7
+ [![Node](https://img.shields.io/node/v/@osanoai/multicli)](https://www.npmjs.com/package/@osanoai/multicli)
8
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178c6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
9
+
3
10
  **The AI collab no one asked for, but everyone needed.**
4
11
 
5
12
  An MCP server that lets Claude, Gemini, and Codex call each other as tools. Because why argue about which AI is best when you can make them work together?
@@ -22,7 +29,7 @@ Multi-CLI sits between your AI clients and bridges them via the [Model Context P
22
29
 
23
30
  ## Prerequisites
24
31
 
25
- You need **Node.js >= 18** and at least **two** of these CLIs installed:
32
+ You need **Node.js >= 20** and at least **two** of these CLIs installed:
26
33
 
27
34
  | CLI | Install |
28
35
  |-----|---------|
@@ -39,7 +46,7 @@ You need **Node.js >= 18** and at least **two** of these CLIs installed:
39
46
  ### Claude Code
40
47
 
41
48
  ```bash
42
- claude mcp add "Multi-CLI" -- npx -y "Multi-CLI"
49
+ claude mcp add Multi-CLI -- npx -y @osanoai/multicli
43
50
  ```
44
51
 
45
52
  That's it. Restart Claude Code and Gemini + Codex tools appear automatically.
@@ -52,9 +59,9 @@ Add to your config file (`~/Library/Application Support/Claude/claude_desktop_co
52
59
  ```json
53
60
  {
54
61
  "mcpServers": {
55
- "multicli-mcp": {
62
+ "Multi-CLI": {
56
63
  "command": "npx",
57
- "args": ["-y", "multicli-mcp"]
64
+ "args": ["-y", "@osanoai/multicli"]
58
65
  }
59
66
  }
60
67
  }
@@ -68,7 +75,7 @@ Restart Claude Desktop completely after saving.
68
75
  ### Gemini CLI
69
76
 
70
77
  ```bash
71
- gemini mcp add --scope user multicli-mcp npx -y multicli-mcp
78
+ gemini mcp add --scope user Multi-CLI npx -y @osanoai/multicli
72
79
  ```
73
80
 
74
81
  Restart the Gemini CLI and Claude + Codex tools will be available.
@@ -79,9 +86,9 @@ Restart the Gemini CLI and Claude + Codex tools will be available.
79
86
  ```json
80
87
  {
81
88
  "mcpServers": {
82
- "multicli-mcp": {
89
+ "Multi-CLI": {
83
90
  "command": "npx",
84
- "args": ["-y", "multicli-mcp"]
91
+ "args": ["-y", "@osanoai/multicli"]
85
92
  }
86
93
  }
87
94
  }
@@ -93,7 +100,7 @@ Restart the Gemini CLI and Claude + Codex tools will be available.
93
100
  ### Codex CLI
94
101
 
95
102
  ```bash
96
- codex mcp add multicli-mcp -- npx -y multicli-mcp
103
+ codex mcp add Multi-CLI -- npx -y @osanoai/multicli
97
104
  ```
98
105
 
99
106
  Restart Codex and Claude + Gemini tools will be available.
@@ -112,7 +119,7 @@ Where `mcp.json` contains:
112
119
  "mcpServers": {
113
120
  "Multi-CLI": {
114
121
  "command": "npx",
115
- "args": ["-y", "multicli"]
122
+ "args": ["-y", "@osanoai/multicli"]
116
123
  }
117
124
  }
118
125
  }
@@ -126,7 +133,7 @@ Where `mcp.json` contains:
126
133
  Multi-CLI uses standard stdio transport. If your client supports MCP, point it at:
127
134
 
128
135
  ```
129
- npx -y multicli
136
+ npx -y @osanoai/multicli
130
137
  ```
131
138
 
132
139
  ---
@@ -193,8 +200,8 @@ which gemini && which codex && which claude
193
200
  If only your own CLI is installed, Multi-CLI hides it (no self-calls). Install a *different* CLI to enable cross-model collaboration.
194
201
 
195
202
  **MCP server not responding?**
196
- 1. Check that Node.js >= 18 is installed
197
- 2. Run `npx multicli` directly to see if it starts
203
+ 1. Check that Node.js >= 20 is installed
204
+ 2. Run `npx @osanoai/multicli` directly to see if it starts
198
205
  3. Restart your AI client completely
199
206
 
200
207
  ## Development
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@osanoai/multicli",
3
- "version": "1.5.2",
4
- "description": "MCP server for multi-CLI coding agent integration (Claude + Gemini + Codex)",
3
+ "version": "1.5.4",
4
+ "description": "MCP server for Multiple CLI coding agent integration (Claude + Gemini + Codex)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
@@ -18,7 +18,7 @@
18
18
  "prepublishOnly": "echo '⚠️ Remember to test locally first!' && npm run build",
19
19
  "changeset": "changeset",
20
20
  "version-packages": "changeset version",
21
- "prepare": "husky"
21
+ "prepare": "husky || true"
22
22
  },
23
23
  "keywords": [
24
24
  "mcp",