![](scripts/assets/toolkit-better.gif)

CloudBase MCP

**๐Ÿช AI Coding, One-Click Deploy**
The bridge that connects your AI IDE to Tencent CloudBase, getting your AI apps online instantly
๐Ÿ’ก Like Vercel + Supabase, but fully AI-driven โ€” from prompt to production [็ฎ€ไฝ“ไธญๆ–‡](./README.md) ยท **English** ยท [Documentation][docs] ยท [Changelog][changelog] ยท [Report Issues][github-issues-link] [![][npm-version-shield]][npm-link] [![][npm-downloads-shield]][npm-link] [![][github-stars-shield]][github-stars-link] [![][github-forks-shield]][github-forks-link] [![][github-issues-shield]][github-issues-link] ![][github-license-shield] [![][github-contributors-shield]][github-contributors-link] [![][cnb-shield]][cnb-link] [![][deepwiki-shield]][deepwiki-link] โญ Like this project? Star it to get notified when new versions are released! **Found a game-changer for AI coding: one-click deploy from prompt to production** [![][share-x-shield]][share-x-link] [![][share-telegram-shield]][share-telegram-link] [![][share-weibo-shield]][share-weibo-link] The shortest path from AI prompt to live application [![][github-trending-shield]](https://github.com/TencentCloudBase/CloudBase-AI-ToolKit) [Clipboard_Screenshot_1763724670](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/tutorials)
## Why You Need CloudBase MCP AI coding tools (like OpenClaw, Cursor, CodeBuddy) solve the **code generation** challenge. However, there's still a gap between "generating code" and "application going live" (deployment, database configuration, CDN, domain setup). **CloudBase MCP** (formerly CloudBase AI ToolKit) bridges this gap. You no longer need: - โŒ Complex DevOps configuration and YAML files - โŒ Manual setup of cloud functions and databases - โŒ Switching back and forth between IDE and cloud console You only need to use natural language in your AI IDE to complete the entire journey from "idea" to "live".
Table of Contents - [๐Ÿš€ Quick Start](#-quick-start) - [โœจ Core Features](#-core-features) - [๐Ÿ“ฆ Installation & Configuration](#-installation--configuration) - [๐ŸŽฏ Use Cases](#-use-cases) - [๐Ÿงฉ MCP Tools](#-mcp-tools) - [๐Ÿ“š More Resources](#-more-resources)
## ๐Ÿš€ Quick Start ### One-Line Configuration, Start Using Immediately Add the following configuration to AI IDEs that support MCP (Cursor, WindSurf, CodeBuddy, etc.). There are two connection methods: --- #### Method 1: Local Mode (Recommended) **Meaning**: MCP service runs on your local machine via `npx`, running on the same machine as the IDE. **Advantages**: Full functionality (including upload/download, template installation, and other capabilities that depend on the local file system). **Requirements**: Node.js installed on the local machine, and can execute `npx`. ```json { "mcpServers": { "cloudbase": { "command": "npx", "args": ["@cloudbase/cloudbase-mcp@latest"] } } } ``` --- #### Method 2: Hosted Mode **Meaning**: MCP service runs on Tencent Cloud, IDE connects to the cloud service via HTTP, no need to install or run Node locally. **Advantages**: Does not depend on the local machine environment, can be used after configuring the secret key. **Limitations**: Some capabilities that depend on the local file system are unavailable (such as local file upload, template download to local machine, etc.). Replace ``, ``, `` in the configuration below with your environment ID and Tencent Cloud API keys: ```json { "mcpServers": { "cloudbase": { "type": "http", "url": "https://tcb-api.cloud.tencent.com/mcp/v1?env_id=", "headers": { "X-TencentCloud-SecretId": "", "X-TencentCloud-SecretKey": "" } } } } ``` #### Method 3: Self-Hosted Server Deployment (Cloud Mode) **Meaning**: Run the MCP service on your own server with the `CLOUDBASE_MCP_CLOUD_MODE=true` environment variable to enable cloud mode. **Use Case**: When you need to deploy the MCP server on a remote machine and expose it via Streamable HTTP. **Security**: When Cloud Mode is enabled, all tools involving local file system read/write and local process execution are **automatically disabled**, ensuring remote callers cannot operate on the server's local resources. ```bash # Enable cloud mode via environment variable (either one) export CLOUDBASE_MCP_CLOUD_MODE=true # or export MCP_CLOUD_MODE=true ``` Tools disabled in Cloud Mode include: `downloadRemoteFile`, `downloadTemplate`, `manageCloudRun` (local run), `manageApps` (local code upload for deploy), `manageStorage` (local file upload/download), `createFunction` (local code upload), and other local file I/O operations. > [!IMPORTANT] > **Deployment Mode Recommendations:** > - **Personal development**: Use local mode (`npx`) for full functionality > - **Team collaboration / remote services**: Use Tencent Cloud hosted mode (Method 2) for zero maintenance > - **Self-hosted server**: Always set `CLOUDBASE_MCP_CLOUD_MODE=true` to disable local file operation tools --- **Optional for Hosted Mode: Control plugin enablement scope via URL** In the `url`, you can control the plugin enablement scope through query parameters: - `enable_plugins`: Only enable specified plugins, multiple plugins separated by commas, e.g., only enable `env` and `database` - `disable_plugins`: Disable specified plugins from the default plugin set, multiple plugins separated by commas, e.g., disable `rag` and `env` ``` # Only enable specified plugins https://tcb-api.cloud.tencent.com/mcp/v1?env_id=YOUR_ENV_ID&enable_plugins=env,database # Disable specified plugins https://tcb-api.cloud.tencent.com/mcp/v1?env_id=YOUR_ENV_ID&disable_plugins=rag,env ``` The currently configurable plugin names are subject to `mcp/src/server.ts`. It is recommended to use canonical names: `env`, `database`, `functions`, `hosting`, `storage`, `setup`, `rag`, `download`, `gateway`, `cloudrun`, `app-auth`, `permissions`, `logs`, `agents`, `invite-code`, `capi`, `apps`. > [!TIP] > **Recommended: CloudBase AI CLI** > > One-click installation, automatic configuration, supports multiple AI programming tools: > > ```bash > npm install @cloudbase/cli@latest -g > ``` > > After installation, run `tcb ai` to start using > > [View complete documentation](https://docs.cloudbase.net/cli-v1/ai/introduce) | [Detailed case tutorial](https://docs.cloudbase.net/practices/ai-cli-mini-program) ### First Time Use 1. **Login to CloudBase** ``` Login to CloudBase ``` AI will automatically open the login interface and guide environment selection 2. **Start Developing** ``` Build a two-player online Gomoku game website, support online battle, and deploy it ``` AI will automatically generate code, deploy to the cloud, and return the access link ### Supported AI IDEs | Tool | Supported Platform | Guide | |------|----------|----------| | [CloudBase AI CLI](https://docs.cloudbase.net/cli-v1/ai/introduce) | CLI | [Guide](https://docs.cloudbase.net/cli-v1/ai/introduce) | | [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) | | [WindSurf](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) | Standalone IDE, VSCode, JetBrains Plugin | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/windsurf) | | [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) | | [CLINE](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cline) | VS Code Plugin | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/cline) | | [GitHub Copilot](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/github-copilot) | VS Code Plugin | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/github-copilot) | | [Trae](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/trae) | Standalone IDE | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/trae) | | [Tongyi Lingma](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/tongyi-lingma) | Standalone IDE, VS Code, JetBrains Plugin | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/tongyi-lingma) | | [RooCode](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/roocode) | VS Code Plugin | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/roocode) | | [Baidu Comate](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/baidu-comate) | VS Code, JetBrains Plugin| [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/baidu-comate) | | [Augment Code](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/augment-code) | VS Code, JetBrains Plugin | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/augment-code) | | [Claude Code](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/claude-code) | CLI | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/claude-code) | | [Gemini CLI](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/gemini-cli) | CLI | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/gemini-cli) | | [OpenAI Codex CLI](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/openai-codex-cli) | CLI | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/openai-codex-cli) | | [OpenCode](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/opencode) | CLI | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/opencode) | | [Qwen Code](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/qwen-code) | CLI | [Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/qwen-code) | ## How to Achieve "One-Click Deploy" for AI Programming? ### 1. AI-Native We're not just "glue code". Our built-in rule library is designed specifically for AI programming, enabling AI to directly generate "deployable" CloudBase best-practice code. ```markdown Prompt: Generate a user login feature - AI automatically generates code following CloudBase standards - Auto-configure database, cloud functions, security rules - One-click deploy to cloud ``` f1 ### 2. One-Click Deploy AI-automated MCP deployment flow, AI handles **all** cloud resource configuration from cloud functions, databases to static websites. ```markdown Prompt: Deploy current project to CloudBase - Auto-detect project type (Web/Mini-program/Backend) - Intelligent deployment parameter configuration - Real-time deployment progress display - Auto-return access link ``` f2 ### 3. Smart Debugging Deployment error? Don't worry. AI automatically reads logs, analyzes issues, and generates fixes, truly achieving a **develop-deploy-debug** closed loop. ```markdown Prompt: There's an error: xxxx - AI automatically views cloud function logs - Analyze error causes - Generate fix code - Auto redeploy ``` f5 ### 4. Full-Stack Ready Whether it's Web apps, mini-programs, or backend services, AI handles it all for you. You just focus on business logic. | Application Type | Tech Stack | Deployment Method | |---------|--------|---------| | **Web Apps** | React/Vue/Next.js | Static Hosting + CDN | | **WeChat Mini-Programs** | Native/UniApp | Mini-program Publishing | | **Backend Services** | Node.js/Python | Cloud Functions/Cloud Run | f3 ### 5. Knowledge Search Built-in intelligent vector search for CloudBase, WeChat Mini-Program and other professional knowledge bases, making AI understand CloudBase better. ```markdown Prompt: How to use cloud database to achieve real-time data synchronization? - Intelligent search CloudBase knowledge base - Return relevant documentation and best practices - Provide code examples ``` f6 ### 6. Flexible Workflow Support /spec and /no_spec commands, intelligently choose based on task complexity. ```markdown /spec - Complete workflow (Requirements โ†’ Design โ†’ Tasks โ†’ Implementation) /no_spec - Fast iteration (Direct implementation) ``` f7 ## Installation & Configuration ### Prerequisites - Node.js v18.15.0 or above - Enabled [Tencent CloudBase Environment](https://tcb.cloud.tencent.com/dev) - Installed AI IDE that supports MCP ([View supported IDEs](#supported-ai-ides)) ### Configuration Methods #### Method 1: CloudBase AI CLI (Recommended) ```bash # Install npm install @cloudbase/cli@latest -g # Use tcb ai ``` #### Method 2: Manual MCP Configuration Add MCP configuration according to your AI IDE:
Cursor Add to `.cursor/mcp.json`: ```json { "mcpServers": { "cloudbase": { "command": "npx", "args": ["@cloudbase/cloudbase-mcp@latest"] } } } ```
WindSurf Add to `.windsurf/settings.json`: ```json { "mcpServers": { "cloudbase": { "command": "npx", "args": ["@cloudbase/cloudbase-mcp@latest"] } } } ```
CodeBuddy CodeBuddy has CloudBase MCP built-in, no configuration needed.
Other IDEs View [Complete configuration guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/) for other IDE configuration methods.
## Use Cases ### Case 1: Two-Player Online Gomoku **Development Process:** 1. Input requirement: "Build a two-player online Gomoku website, support online battle" 2. AI generates: Web app + cloud database + real-time data push 3. Auto-deploy and get access link **Demo:** [Gomoku Game](https://cloud1-5g39elugeec5ba0f-1300855855.tcloudbaseapp.com/gobang/#/)
View development screenshots | Development Process | Final Result | |---------|---------| | ![][image-case1-dev] | ![][image-case1-result] |
### Case 2: AI Pet Mini-Program **Development Process:** 1. Input: "Develop a pet-raising mini-program with AI-enhanced interaction" 2. AI generates: Mini-program + cloud database + AI cloud function 3. Import to WeChat DevTools to publish
View development screenshots and mini-program preview ![][image-case2]
### Case 3: Smart Issue Diagnosis When an app has issues, AI automatically views logs, analyzes errors, and generates fix code.
View smart diagnosis process ![][image-case3]
## MCP Tools **39 tools** covering environment management, database, cloud functions, static hosting, mini-program publishing, and other core features. | Category | Tools | Core Features | |------|------|----------| | **Environment** | 4 | Login authentication, environment query, domain management | | **Database** | 11 | Collection management, document CRUD, indexes, data models | | **Cloud Functions** | 9 | Create, update, invoke, logs, triggers | | **Static Hosting** | 5 | File upload, domain configuration, website deployment | | **Mini-Program** | 7 | Upload, preview, build, configuration, debugging | | **Tool Support** | 3 | Templates, knowledge base search, web search | [View complete tool documentation](doc/mcp-tools.md) | [Tool specification JSON](scripts/tools.json) ## More Resources ### Documentation - [Quick Start](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/getting-started) - [IDE Configuration Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ide-setup/) - [Project Templates](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/templates) - [Development Guide](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/development) - [Plugin System](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/plugins) - [FAQ](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/faq) ### Tutorials #### Articles - [Develop a Neighborhood Item Recycling Mini-Program with CloudBase AI CLI](https://docs.cloudbase.net/practices/ai-cli-mini-program) - [Build and auto-deploy with OpenClaw + CloudBase](https://mp.weixin.qq.com/s/vKcnro2GrbjI_QyQohpNRw) - [Agent Skills in practice: don't let AI-built code die on localhost](https://mp.weixin.qq.com/s/soIEU5DG01xfrKMaCetGAA) - [One-stop development of card flip game with CodeBuddy IDE + CloudBase](https://mp.weixin.qq.com/s/2EM3RBzdQUCdfld2CglWgg) - [Develop a WeChat mini-game in 1 hour](https://cloud.tencent.com/developer/article/2532595) - [More tutorials...](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/tutorials) #### Videos - [CloudBase: Use AI to develop an Overcooked game](https://www.bilibili.com/video/BV1v5KAzwEf9/) - [Software 3.0: Best AI Programming Partner](https://www.bilibili.com/video/BV15gKdz1E5N/) - [More videos...](https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/tutorials) ### Project Cases - [Gomoku Online Game](https://github.com/TencentCloudBase/awesome-cloudbase-examples/tree/master/web/gomoku-game) - [Overcooked Co-op Game](https://github.com/TencentCloudBase/awesome-cloudbase-examples/tree/master/web/overcooked-game) - [E-commerce Admin Panel](https://github.com/TencentCloudBase/awesome-cloudbase-examples/tree/master/web/ecommerce-management-backend) - [More cases...](https://github.com/TencentCloudBase/awesome-cloudbase-examples) ## โ“ FAQ
How is it different from Vercel / Railway / Netlify? These platforms solve "deployment", CloudBase MCP solves the complete chain from "AI-generated code to deployment". You don't need to leave the IDE, don't need to write configuration files - AI automatically handles all cloud resources including cloud functions, databases, CDN, domains, etc. In one sentence: They are deployment tools, we are an AI-native full-stack development + deployment platform.
Can I use it without Cursor / Copilot or other AI IDEs? CloudBase MCP is based on the standard MCP protocol, supporting all MCP-compatible tools - including Claude Code, Gemini CLI, OpenCode, and other CLI tools. As long as your tool can configure an MCP Server, you can use it. [View complete support list](#supported-ai-ides).
Where will my code be uploaded? Is it secure? Code will only be deployed to **your own** Tencent CloudBase environment, and won't pass through any third party. In local mode, MCP service runs on your local machine, code won't leave your computer until you actively deploy. All cloud communications use HTTPS encryption.
Is it safe to deploy MCP service on a remote server? CloudBase MCP provides comprehensive deployment mode security isolation: - **Local Mode** (started via `npx`): MCP service runs on the developer's local machine, communicating with the AI IDE via stdio. The caller is the developer themselves, who already has full control of the machine. Tools like `downloadRemoteFile` and `manageCloudRun(action="run")` are essentially equivalent to the developer running `curl` or `node app.js` in a terminal โ€” this is normal product functionality. - **Cloud/Server Mode** (set `CLOUDBASE_MCP_CLOUD_MODE=true`): Enables a three-layer security filtering mechanism that **disables all tools involving local file read/write and local process execution**, preventing remote callers from operating on the server's local file system or launching local processes via MCP. If you need to deploy the MCP service on a remote server, **you must set the `CLOUDBASE_MCP_CLOUD_MODE=true` environment variable**. The Tencent Cloud hosted mode (Streamable HTTP) has this protection enabled automatically.
What types of projects are supported? Almost all mainstream scenarios: Web apps like React/Vue/Next.js, WeChat Mini-Programs, Node.js/Python/Go/Java backend services. AI will automatically detect the project type and choose the appropriate deployment strategy (static hosting, cloud functions, cloud-run containers).
Is it free? Do I need to pay? The CloudBase MCP tool itself is completely open-source and free (MIT). CloudBase environment has free quotas, usually sufficient for personal development and small projects. After exceeding the free quota, pay-as-you-go billing applies. See [Billing Instructions](https://cloud.tencent.com/document/product/876/39095) for details.
What if login says "environment doesn't exist"? 1. Confirm you've activated an environment in the [CloudBase Console](https://tcb.cloud.tencent.com/) 2. Check if the environment is in normal running status (not suspended/isolated due to unpaid fees) 3. Re-execute "Login to CloudBase" to let AI guide you to select the correct environment
## Community ### WeChat Group
WeChat Group QR Code
Scan to join WeChat tech exchange group
### Other Communication Channels | Platform | Link | Description | |------|------|------| | **Official Documentation** | [View Documentation](https://docs.cloudbase.net/) | Complete CloudBase documentation | | **Issue Feedback** | [Submit Issue](https://github.com/TencentCloudBase/CloudBase-AI-ToolKit/issues) | Bug reports and feature requests | ## Project Activity ![Repo Activity](https://repobeats.axiom.co/api/embed/6cd6ed00da4384e43b24805c197f584626946dda.svg "Repobeats analytics image") ## Contributors Thanks to all the developers who have contributed to CloudBase MCP! [![Contributors](https://contrib.rocks/image?repo=TencentCloudBase/CloudBase-AI-ToolKit)](https://github.com/TencentCloudBase/CloudBase-AI-ToolKit/graphs/contributors) ---
**If this project is helpful to you, please give us a Star!** [![][github-stars-shield]][github-stars-link] [MIT](LICENSE) ยฉ TencentCloudBase
[image-overview]: https://7463-tcb-advanced-a656fc-1257967285.tcb.qcloud.la/mcp/video-banner.png [image-ai-native]: https://via.placeholder.com/800x400/3B82F6/FFFFFF?text=AI+Native+Development [image-deploy]: https://via.placeholder.com/800x400/10B981/FFFFFF?text=One-Click+Deploy [image-fullstack]: https://via.placeholder.com/800x400/8B5CF6/FFFFFF?text=Full-Stack+Application [image-agent]: https://via.placeholder.com/800x400/EC4899/FFFFFF?text=AI+Agent+Development [image-debug]: https://via.placeholder.com/800x400/F59E0B/FFFFFF?text=Smart+Debugging [image-knowledge]: https://via.placeholder.com/800x400/06B6D4/FFFFFF?text=Knowledge+Search [image-workflow]: https://via.placeholder.com/800x400/6366F1/FFFFFF?text=Flexible+Workflow [image-case1-dev]: https://7463-tcb-advanced-a656fc-1257967285.tcb.qcloud.la/turbo-deploy/turbo-deploy-001.png [image-case1-result]: https://7463-tcb-advanced-a656fc-1257967285.tcb.qcloud.la/turbo-deploy/turbo-deploy-004.png [image-case2]: https://7463-tcb-advanced-a656fc-1257967285.tcb.qcloud.la/turbo-deploy/turbo-deploy-005.png [image-case3]: https://7463-tcb-advanced-a656fc-1257967285.tcb.qcloud.la/turbo-deploy/turbo-deploy-009.png [docs]: https://docs.cloudbase.net/ai/cloudbase-ai-toolkit/ [changelog]: https://github.com/TencentCloudBase/CloudBase-MCP/releases [github-issues-link]: https://github.com/TencentCloudBase/CloudBase-AI-ToolKit/issues [github-stars-link]: https://github.com/TencentCloudBase/CloudBase-AI-ToolKit/stargazers [github-forks-link]: https://github.com/TencentCloudBase/CloudBase-AI-ToolKit/network/members [github-trending-url]: https://github.com/trending [npm-link]: https://www.npmjs.com/package/@cloudbase/cloudbase-mcp [cnb-link]: https://cnb.cool/tencent/cloud/cloudbase/CloudBase-AI-ToolKit [deepwiki-link]: https://deepwiki.com/TencentCloudBase/CloudBase-AI-ToolKit [npm-version-shield]: https://img.shields.io/npm/v/@cloudbase/cloudbase-mcp?color=3B82F6&label=npm&logo=npm&style=flat-square [npm-downloads-shield]: https://img.shields.io/npm/dw/@cloudbase/cloudbase-mcp?color=10B981&label=downloads&logo=npm&style=flat-square [github-stars-shield]: https://img.shields.io/github/stars/TencentCloudBase/CloudBase-AI-ToolKit?color=F59E0B&label=stars&logo=github&style=flat-square [github-forks-shield]: https://img.shields.io/github/forks/TencentCloudBase/CloudBase-AI-ToolKit?color=8B5CF6&label=forks&logo=github&style=flat-square [github-issues-shield]: https://img.shields.io/github/issues/TencentCloudBase/CloudBase-AI-ToolKit?color=EC4899&label=issues&logo=github&style=flat-square [github-license-shield]: https://img.shields.io/badge/license-MIT-6366F1?logo=github&style=flat-square [github-contributors-shield]: https://img.shields.io/github/contributors/TencentCloudBase/CloudBase-AI-ToolKit?color=06B6D4&label=contributors&logo=github&style=flat-square [github-contributors-link]: https://github.com/TencentCloudBase/CloudBase-AI-ToolKit/graphs/contributors [cnb-shield]: https://img.shields.io/badge/CNB-CloudBase--AI--ToolKit-3B82F6?logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHJ4PSIyIiBmaWxsPSIjM0I4MkY2Ii8+PHBhdGggZD0iTTUgM0g3VjVINSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48cGF0aCBkPSJNNSA3SDdWOUg1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIvPjwvc3ZnPg==&style=flat-square [deepwiki-shield]: https://deepwiki.com/badge.svg [github-trending-shield]: https://img.shields.io/github/stars/TencentCloudBase/CloudBase-AI-ToolKit?style=social [share-x-link]: https://x.com/intent/tweet?hashtags=cloudbase,ai,devtools&text=Go%20from%20AI%20prompt%20to%20live%20app%20in%20one%20click!%20No%20DevOps%20config%20needed%20๐Ÿš€&url=https://github.com/TencentCloudBase/CloudBase-AI-ToolKit [share-x-shield]: https://img.shields.io/badge/-share%20on%20x-black?labelColor=black&logo=x&logoColor=white&style=flat-square [share-telegram-shield]: https://img.shields.io/badge/-share%20on%20telegram-black?labelColor=black&logo=telegram&logoColor=white&style=flat-square [share-telegram-link]: https://t.me/share/url?url=https://github.com/TencentCloudBase/CloudBase-AI-ToolKit&text=Go%20from%20AI%20prompt%20to%20live%20app%20in%20one%20click!%20No%20DevOps%20config%20needed%20๐Ÿš€ [share-weibo-link]: http://service.weibo.com/share/share.php?sharesource=weibo&title=Go%20from%20AI%20prompt%20to%20live%20app%20in%20one%20click!%20No%20DevOps%20config%20needed%20๐Ÿš€&url=https://github.com/TencentCloudBase/CloudBase-AI-ToolKit [share-weibo-shield]: https://img.shields.io/badge/-share%20on%20weibo-black?labelColor=black&logo=sinaweibo&logoColor=white&style=flat-square