cline 3.0.25 → 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.
- package/README.md +24 -0
- package/package.json +12 -12
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.
|
|
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": [
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"postinstall": "node ./postinstall.mjs || true"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@cline/sdk": "0.0.
|
|
41
|
-
"@cline/core": "0.0.
|
|
42
|
-
"@cline/agents": "0.0.
|
|
43
|
-
"@cline/llms": "0.0.
|
|
44
|
-
"@cline/shared": "0.0.
|
|
40
|
+
"@cline/sdk": "0.0.49",
|
|
41
|
+
"@cline/core": "0.0.49",
|
|
42
|
+
"@cline/agents": "0.0.49",
|
|
43
|
+
"@cline/llms": "0.0.49",
|
|
44
|
+
"@cline/shared": "0.0.49"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@cline/cli-linux-arm64": "3.0.
|
|
48
|
-
"@cline/cli-darwin-x64": "3.0.
|
|
49
|
-
"@cline/cli-windows-arm64": "3.0.
|
|
50
|
-
"@cline/cli-darwin-arm64": "3.0.
|
|
51
|
-
"@cline/cli-linux-x64": "3.0.
|
|
52
|
-
"@cline/cli-windows-x64": "3.0.
|
|
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
|
}
|