cline 3.0.26 → 3.0.27

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 +24 -0
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -163,6 +163,30 @@ cline auth --provider anthropic --apikey sk-... --modelid claude-sonnet-4-6
163
163
  cline auth --provider openai-native --apikey sk-... --modelid gpt-5 --baseurl https://api.example.com/v1
164
164
  ```
165
165
 
166
+ ### MCP servers
167
+
168
+ Manage MCP servers with the interactive wizard:
169
+
170
+ ```sh
171
+ cline mcp
172
+ cline config mcp
173
+ ```
174
+
175
+ Open the add-server wizard with the name, transport, and command or URL already filled in with `cline mcp install` (`cline mcp add` also works). Stdio servers use everything after `--` as the command and arguments:
176
+
177
+ ```sh
178
+ cline mcp install fs -- npx -y @modelcontextprotocol/server-filesystem /tmp
179
+ ```
180
+
181
+ Remote HTTP and SSE servers take a name, transport, and URL. The wizard still asks for auth details before saving:
182
+
183
+ ```sh
184
+ cline mcp install ctx7 --transport http https://mcp.context7.com/mcp
185
+ cline mcp install events --transport sse https://example.com/sse
186
+ ```
187
+
188
+ Because this command opens the wizard, it requires a TTY.
189
+
166
190
  ### Connectors
167
191
 
168
192
  Bridge a chat surface into RPC-backed Cline sessions. Each conversation thread maps to a session with full context. Supported platforms: Telegram, Slack, Google Chat, WhatsApp, and Linear.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cline",
3
- "version": "3.0.26",
3
+ "version": "3.0.27",
4
4
  "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [
@@ -44,11 +44,11 @@
44
44
  "@cline/shared": "0.0.49"
45
45
  },
46
46
  "optionalDependencies": {
47
- "@cline/cli-linux-arm64": "3.0.26",
48
- "@cline/cli-darwin-x64": "3.0.26",
49
- "@cline/cli-windows-arm64": "3.0.26",
50
- "@cline/cli-darwin-arm64": "3.0.26",
51
- "@cline/cli-linux-x64": "3.0.26",
52
- "@cline/cli-windows-x64": "3.0.26"
47
+ "@cline/cli-linux-arm64": "3.0.27",
48
+ "@cline/cli-darwin-x64": "3.0.27",
49
+ "@cline/cli-windows-arm64": "3.0.27",
50
+ "@cline/cli-darwin-arm64": "3.0.27",
51
+ "@cline/cli-linux-x64": "3.0.27",
52
+ "@cline/cli-windows-x64": "3.0.27"
53
53
  }
54
54
  }