@osanoai/multicli 1.5.2 → 1.5.3

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 +20 -12
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,13 @@
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
+ [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/osanoai/multicli/badge)](https://scorecard.dev/viewer/?uri=github.com/osanoai/multicli)
8
+ [![Node](https://img.shields.io/node/v/@osanoai/multicli)](https://www.npmjs.com/package/@osanoai/multicli)
9
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178c6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
10
+
3
11
  **The AI collab no one asked for, but everyone needed.**
4
12
 
5
13
  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 +30,7 @@ Multi-CLI sits between your AI clients and bridges them via the [Model Context P
22
30
 
23
31
  ## Prerequisites
24
32
 
25
- You need **Node.js >= 18** and at least **two** of these CLIs installed:
33
+ You need **Node.js >= 20** and at least **two** of these CLIs installed:
26
34
 
27
35
  | CLI | Install |
28
36
  |-----|---------|
@@ -39,7 +47,7 @@ You need **Node.js >= 18** and at least **two** of these CLIs installed:
39
47
  ### Claude Code
40
48
 
41
49
  ```bash
42
- claude mcp add "Multi-CLI" -- npx -y "Multi-CLI"
50
+ claude mcp add Multi-CLI -- npx -y @osanoai/multicli
43
51
  ```
44
52
 
45
53
  That's it. Restart Claude Code and Gemini + Codex tools appear automatically.
@@ -52,9 +60,9 @@ Add to your config file (`~/Library/Application Support/Claude/claude_desktop_co
52
60
  ```json
53
61
  {
54
62
  "mcpServers": {
55
- "multicli-mcp": {
63
+ "Multi-CLI": {
56
64
  "command": "npx",
57
- "args": ["-y", "multicli-mcp"]
65
+ "args": ["-y", "@osanoai/multicli"]
58
66
  }
59
67
  }
60
68
  }
@@ -68,7 +76,7 @@ Restart Claude Desktop completely after saving.
68
76
  ### Gemini CLI
69
77
 
70
78
  ```bash
71
- gemini mcp add --scope user multicli-mcp npx -y multicli-mcp
79
+ gemini mcp add --scope user Multi-CLI npx -y @osanoai/multicli
72
80
  ```
73
81
 
74
82
  Restart the Gemini CLI and Claude + Codex tools will be available.
@@ -79,9 +87,9 @@ Restart the Gemini CLI and Claude + Codex tools will be available.
79
87
  ```json
80
88
  {
81
89
  "mcpServers": {
82
- "multicli-mcp": {
90
+ "Multi-CLI": {
83
91
  "command": "npx",
84
- "args": ["-y", "multicli-mcp"]
92
+ "args": ["-y", "@osanoai/multicli"]
85
93
  }
86
94
  }
87
95
  }
@@ -93,7 +101,7 @@ Restart the Gemini CLI and Claude + Codex tools will be available.
93
101
  ### Codex CLI
94
102
 
95
103
  ```bash
96
- codex mcp add multicli-mcp -- npx -y multicli-mcp
104
+ codex mcp add Multi-CLI -- npx -y @osanoai/multicli
97
105
  ```
98
106
 
99
107
  Restart Codex and Claude + Gemini tools will be available.
@@ -112,7 +120,7 @@ Where `mcp.json` contains:
112
120
  "mcpServers": {
113
121
  "Multi-CLI": {
114
122
  "command": "npx",
115
- "args": ["-y", "multicli"]
123
+ "args": ["-y", "@osanoai/multicli"]
116
124
  }
117
125
  }
118
126
  }
@@ -126,7 +134,7 @@ Where `mcp.json` contains:
126
134
  Multi-CLI uses standard stdio transport. If your client supports MCP, point it at:
127
135
 
128
136
  ```
129
- npx -y multicli
137
+ npx -y @osanoai/multicli
130
138
  ```
131
139
 
132
140
  ---
@@ -193,8 +201,8 @@ which gemini && which codex && which claude
193
201
  If only your own CLI is installed, Multi-CLI hides it (no self-calls). Install a *different* CLI to enable cross-model collaboration.
194
202
 
195
203
  **MCP server not responding?**
196
- 1. Check that Node.js >= 18 is installed
197
- 2. Run `npx multicli` directly to see if it starts
204
+ 1. Check that Node.js >= 20 is installed
205
+ 2. Run `npx @osanoai/multicli` directly to see if it starts
198
206
  3. Restart your AI client completely
199
207
 
200
208
  ## 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.3",
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": {