
🪐 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
简体中文 · English · Documentation · Changelog · Report Issues
⭐ 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
The shortest path from AI prompt to live application
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:
You only need to use natural language in your AI IDE to complete the entire journey from "idea" to "live".
Add the following configuration to AI IDEs that support MCP (Cursor, WindSurf, CodeBuddy, etc.). There are two connection methods:
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.
{
"mcpServers": {
"cloudbase": {
"command": "npx",
"args": ["@cloudbase/cloudbase-mcp@latest"]
}
}
}
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 <env_id>, <Tencent Cloud Secret ID>, <Tencent Cloud Secret Key> in the configuration below with your environment ID and Tencent Cloud API keys:
{
"mcpServers": {
"cloudbase": {
"type": "http",
"url": "https://tcb-api.cloud.tencent.com/mcp/v1?env_id=<env_id>",
"headers": {
"X-TencentCloud-SecretId": "<Tencent Cloud Secret ID>",
"X-TencentCloud-SecretKey": "<Tencent Cloud Secret Key>"
}
}
}
}
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 databasedisable_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:
npm install @cloudbase/cli@latest -g
After installation, run tcb ai to start using
Login to CloudBase
Login to CloudBase
AI will automatically open the login interface and guide environment selection
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
| Tool | Supported Platform | Guide |
|---|---|---|
| CloudBase AI CLI | CLI | Guide |
| Cursor | Standalone IDE | Guide |
| WindSurf | Standalone IDE, VSCode, JetBrains Plugin | Guide |
| CodeBuddy | Standalone IDE (CloudBase built-in), VS Code, JetBrains, WeChat DevTools | Guide |
| CLINE | VS Code Plugin | Guide |
| GitHub Copilot | VS Code Plugin | Guide |
| Trae | Standalone IDE | Guide |
| Tongyi Lingma | Standalone IDE, VS Code, JetBrains Plugin | Guide |
| RooCode | VS Code Plugin | Guide |
| Baidu Comate | VS Code, JetBrains Plugin | Guide |
| Augment Code | VS Code, JetBrains Plugin | Guide |
| Claude Code | CLI | Guide |
| Gemini CLI | CLI | Guide |
| OpenAI Codex CLI | CLI | Guide |
| OpenCode | CLI | Guide |
| Qwen Code | CLI | Guide |
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.
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
AI-automated MCP deployment flow, AI handles all cloud resource configuration from cloud functions, databases to static websites.
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
Deployment error? Don't worry. AI automatically reads logs, analyzes issues, and generates fixes, truly achieving a develop-deploy-debug closed loop.
Prompt: There's an error: xxxx
- AI automatically views cloud function logs
- Analyze error causes
- Generate fix code
- Auto redeploy
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 |
Built-in intelligent vector search for CloudBase, WeChat Mini-Program and other professional knowledge bases, making AI understand CloudBase better.
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
Support /spec and /no_spec commands, intelligently choose based on task complexity.
/spec - Complete workflow (Requirements → Design → Tasks → Implementation)
/no_spec - Fast iteration (Direct implementation)
# Install
npm install @cloudbase/cli@latest -g
# Use
tcb ai
Add MCP configuration according to your AI IDE:
Add to .cursor/mcp.json:
{
"mcpServers": {
"cloudbase": {
"command": "npx",
"args": ["@cloudbase/cloudbase-mcp@latest"]
}
}
}
Add to .windsurf/settings.json:
{
"mcpServers": {
"cloudbase": {
"command": "npx",
"args": ["@cloudbase/cloudbase-mcp@latest"]
}
}
}
CodeBuddy has CloudBase MCP built-in, no configuration needed.
View Complete configuration guide for other IDE configuration methods.
Development Process:
Demo: Gomoku Game
| Development Process | Final Result |
|---|---|
![]() | ![]() |
Development Process:

When an app has issues, AI automatically views logs, analyzes errors, and generates fix code.

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 | Tool specification JSON
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.
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.
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.
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).
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 for details.
| Platform | Link | Description |
|---|---|---|
| Official Documentation | View Documentation | Complete CloudBase documentation |
| Issue Feedback | Submit Issue | Bug reports and feature requests |
Thanks to all the developers who have contributed to CloudBase MCP!