@cloudbase/cloudbase-mcp 1.8.31 → 1.8.33
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 +25 -31
- package/dist/cli.cjs +3 -3
- package/dist/index.cjs +3 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -61,47 +61,37 @@ When coding in **Cursor/VSCode GitHub Copilot/WinSurf/CodeBuddy/Augment Code/Cla
|
|
|
61
61
|
---
|
|
62
62
|
🚩 **Get Started with CloudBase AI ToolKit**
|
|
63
63
|
|
|
64
|
-
|
|
65
|
-
Add the following config to your AI IDE (e.g., Cursor) to enable all CloudBase AI ToolKit capabilities:
|
|
64
|
+
## 🚀 Recommended: CloudBase AI CLI (Simplest)
|
|
66
65
|
|
|
67
|
-
|
|
68
|
-
{
|
|
69
|
-
"mcpServers": {
|
|
70
|
-
"cloudbase": {
|
|
71
|
-
"command": "npx",
|
|
72
|
-
"args": ["npm-global-exec@latest", "@cloudbase/cloudbase-mcp@latest"]
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
```
|
|
66
|
+
CloudBase AI CLI is a unified command-line tool that integrates multiple mainstream AI programming tools, supporting built-in models and custom models. It allows you to use Claude Code, OpenAI Codex, aider, Qwen Code, and other AI programming assistants with a simple command, while built-in CloudBase AI Toolkit supports the complete workflow from development to deployment, and can run in any environment.
|
|
77
67
|
|
|
78
|
-
|
|
79
|
-
|
|
68
|
+
**Core Advantages:**
|
|
69
|
+
- 🏗️ **Unified Management** - One command to manage multiple AI programming CLI tools, no need to switch between tools
|
|
70
|
+
- 🤖 **Multi-Model Support** - Support for built-in and custom large models, including Kimi K2, Zhipu GLM-4.5, etc.
|
|
71
|
+
- 🚀 **One-Click Development & Deployment** - Complete workflow from code generation to cloud deployment, supporting Web apps, mini-programs, and backend services
|
|
72
|
+
- 🌍 **Everywhere** - Can run in any environment, including mini-program developer tools, VS Code, GitHub Actions, etc.
|
|
80
73
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
74
|
+
**One-Click Installation**
|
|
75
|
+
```bash
|
|
76
|
+
# Mac/Linux/Windows WSL
|
|
77
|
+
curl https://static.cloudbase.net/cli/install/install.sh -fsS | bash
|
|
84
78
|
|
|
85
|
-
|
|
79
|
+
# Windows PowerShell
|
|
80
|
+
irm https://static.cloudbase.net/cli/install/install.ps1 | iex
|
|
86
81
|
```
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
82
|
+
|
|
83
|
+
**Start Using**
|
|
84
|
+
```bash
|
|
85
|
+
tcb ai
|
|
90
86
|
```
|
|
91
87
|
|
|
92
|
-
|
|
88
|
+
On first launch, the configuration wizard will guide you through AI tool selection and configuration. After configuration, you can start using AI tools for assisted development. You can run `tcb ai --setup` later to switch tools and models.
|
|
93
89
|
|
|
94
|
-
|
|
95
|
-
- Mini-program cloud development template
|
|
96
|
-
- React cloud development template
|
|
97
|
-
- Vue cloud development template
|
|
98
|
-
- UniApp cloud development template
|
|
99
|
-
- Universal cloud development template
|
|
90
|
+
👉 [View complete usage documentation](https://docs.cloudbase.net/cli-v1/ai/introduce) | [Try Now](https://docs.cloudbase.net/cli-v1/ai/introduce) | [Full-Stack Mini-Program Development Case Tutorial](https://docs.cloudbase.net/practices/ai-cli-mini-program)
|
|
100
91
|
|
|
101
|
-
|
|
92
|
+
## 🛠️ Other IDE Configuration Methods
|
|
102
93
|
|
|
103
|
-
|
|
104
|
-
👉 [View full configuration and usage tutorial](#2-configure-your-ai-ide)
|
|
94
|
+
If you use other AI IDEs, please refer to the configuration guides below:
|
|
105
95
|
|
|
106
96
|
---
|
|
107
97
|
|
|
@@ -195,6 +185,7 @@ All the following tools support CloudBase AI ToolKit. Choose your tool and follo
|
|
|
195
185
|
|
|
196
186
|
| Tool | Platform | Guide |
|
|
197
187
|
|------|----------|----------|
|
|
188
|
+
| [CloudBase AI CLI](https://docs.cloudbase.net/cli-v1/ai/introduce) | CLI | [Guide](https://docs.cloudbase.net/cli-v1/ai/introduce) |
|
|
198
189
|
| [Cursor](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) | Standalone IDE| [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cursor) |
|
|
199
190
|
| [WindSurf](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) | Standalone IDE, VSCode, JetBrains | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) |
|
|
200
191
|
| [CodeBuddy](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) | Standalone IDE (CloudBase built-in), VS Code, JetBrains, WeChat DevTools | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/codebuddy) |
|
|
@@ -275,6 +266,9 @@ CloudBase MCP uses a plugin architecture. [See detailed docs](https://docs.cloud
|
|
|
275
266
|
|
|
276
267
|
### 📄 Articles
|
|
277
268
|
|
|
269
|
+
#### 🚀 CloudBase AI CLI Case Studies
|
|
270
|
+
- [Develop a Neighborhood Item Recycling Mini-Program with CloudBase AI CLI](https://docs.cloudbase.net/practices/ai-cli-mini-program) - Detailed case tutorial showing how to use CloudBase AI CLI to develop a complete mini-program project from scratch
|
|
271
|
+
|
|
278
272
|
#### 🌐 Full-Stack Web Apps
|
|
279
273
|
- [One-stop development of card flip game with CodeBuddy IDE + CloudBase](https://mp.weixin.qq.com/s/2EM3RBzdQUCdfld2CglWgg)
|
|
280
274
|
- [Develop a WeChat mini-game in 1 hour with CloudBase AI Toolkit](https://cloud.tencent.com/developer/article/2532595)
|