Deploy and manage Tencent CloudBase full-stack apps, mini-programs, and cloud functions via an MCP server, while automating code reviews, documentation sync, git workflows, and PR fixes across the repository.
Use when auditing CloudBase cloud API wrappers, MCP tools, generated action metadata, or related docs for outdated or incorrect action names, parameters, casing, request shapes, or missing contract tests, especially during periodic quality review or before preparing corrective PRs.
Perform a full codebase review, categorize findings by severity, file GitHub issues, then fix each issue in an isolated git worktree and submit PRs. Use this skill when the user asks to audit the codebase, do a comprehensive code review, find and fix security/quality/reliability issues, or run a proactive health check across the entire repository.
Use when auditing repository documentation for drift, stale statements, broken references, or README mismatches, especially across published docs under `doc/` and key entry surfaces such as `README.md`, `README-EN.md`, `README-ZH.md`, and `mcp/README.md` during periodic maintenance or before preparing corrective PRs.
Documentation and extension workflows derived from local slash commands (docs, explanation, issues, prototypes, tutorials, MCP design review).
Reusable git delivery workflows derived from local slash commands (commit, push, PR, release notes, and GitHub Actions failure triage with worktree-based fixes).
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.

🪐 AI 编程,一键上线
连接 AI IDE 与腾讯云 CloudBase 的部署桥梁,让你的 AI 应用即刻上线
💡 像 Vercel + Supabase,但全程 AI 驱动——从提示词直达生产环境
English · 简体中文 · [文档][docs] · [更新日志][changelog] · [反馈问题][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] [![][cnb-shield]][cnb-link] [![][deepwiki-shield]][deepwiki-link]
⭐ 喜欢这个项目?点个 Star,新版本发布时你会收到通知~
发现了一个让 AI 编程一键上线的神器,推荐给正在用 AI 编程的朋友
[![][share-x-shield]][share-x-link] [![][share-telegram-shield]][share-telegram-link] [![][share-weibo-shield]][share-weibo-link]
从 AI 提示词到应用上线的最短路径
AI 编程工具(如 OpenClaw、Cursor、CodeBuddy)解决了代码生成的难题。
但是,从"生成代码"到"应用上线"(部署、配置数据库、CDN、域名),依然存在一条鸿沟。
CloudBase MCP(原 CloudBase AI ToolKit)填补了这条鸿沟。
你不再需要:
你只需要在 AI IDE 中,用自然语言完成从"想法"到"上线"的全过程。
在支持 MCP 的 AI IDE 中(Cursor、WindSurf、CodeBuddy 等)添加下方任一配置即可。连接方式有两种:
含义:MCP 服务在你本机通过 npx 启动,与 IDE 同机运行。
优点:功能最全(包含上传/下载、模板安装等依赖本地文件系统的能力)。
要求:本机已安装 Node.js,且能执行 npx。
{
"mcpServers": {
"cloudbase": {
"command": "npx",
"args": ["@cloudbase/cloudbase-mcp@latest"]
}
}
}
含义:MCP 服务运行在腾讯云上,IDE 通过 HTTP 连接云端服务,无需在本地安装或运行 Node。 优点:不依赖本机环境,配置好密钥即可使用。 限制:部分依赖本地文件系统的能力不可用(如本地文件上传、模板下载到本机等)。
将下面配置中的 <env_id>、<腾讯云 Secret ID>、<腾讯云 Secret Key> 替换为你的环境 ID 和腾讯云 API 密钥:
{
"mcpServers": {
"cloudbase": {
"type": "http",
"url": "https://tcb-api.cloud.tencent.com/mcp/v1?env_id=<env_id>",
"headers": {
"X-TencentCloud-SecretId": "<腾讯云 Secret ID>",
"X-TencentCloud-SecretKey": "<腾讯云 Secret Key>"
}
}
}
}
含义:在自有服务器上运行 MCP 服务,通过环境变量 CLOUDBASE_MCP_CLOUD_MODE=true 启用云端模式。
适用场景:需要在远程服务器上自行部署 MCP 服务端,对外提供 Streamable HTTP 接口。
安全机制:启用 Cloud Mode 后,所有涉及本地文件系统读写和本地进程启动的工具将自动禁用,确保远程调用方无法操作服务器本地资源。
# 启用云端模式的环境变量(二选一)
export CLOUDBASE_MCP_CLOUD_MODE=true
# 或
export MCP_CLOUD_MODE=true
Cloud Mode 下被禁用的工具包括:downloadRemoteFile、downloadTemplate、manageCloudRun(本地运行)、manageApps(本地代码上传部署)、manageStorage(本地文件上传/下载)、createFunction(本地代码上传)等涉及本地文件 I/O 的操作。
[!IMPORTANT] 部署模式选择建议:
- 个人开发:使用本地模式(
npx),功能最全- 团队协作 / 远程服务:使用腾讯云托管模式(方式二),免运维
- 自建服务器:务必设置
CLOUDBASE_MCP_CLOUD_MODE=true,禁用本地文件操作类工具
托管模式可选:通过 URL 控制插件启用范围
在 url 里可通过 query 参数控制插件启用范围:
enable_plugins:仅启用指定插件,多个插件使用逗号分隔,例如只启用 env 和 databasedisable_plugins:从默认插件集合中禁用指定插件,多个插件使用逗号分隔,例如禁用 rag 和 env# 只启用指定插件
https://tcb-api.cloud.tencent.com/mcp/v1?env_id=YOUR_ENV_ID&enable_plugins=env,database
# 禁用指定插件
https://tcb-api.cloud.tencent.com/mcp/v1?env_id=YOUR_ENV_ID&disable_plugins=rag,env
当前可配置的插件名以 mcp/src/server.ts 为准,建议优先使用 canonical 名称:env, database, functions, hosting, storage, setup, rag, download, gateway, cloudrun, app-auth, permissions, logs, agents, invite-code, capi, apps。
[!TIP] 推荐使用 CloudBase AI CLI
一键安装,自动配置,支持多种 AI 编程工具:
npm install @cloudbase/cli@latest -g安装后运行
tcb ai即可开始使用
登录云开发
登录云开发
AI 会自动打开登录界面并引导环境选择
开始开发
做一个双人在线对战五子棋网站,支持联机对战,最后进行部署
AI 会自动生成代码、部署到云端并返回访问链接
Tencent CloudBase — AI models, authentication, NoSQL/MySQL databases, cloud functions, cloud storage, CloudRun backend services, and WeChat Mini Program integration. Powered by cloudbase-mcp.
CloudBase Sites — create, save, deploy, and inspect React/Vite web apps hosted on Tencent CloudBase. Inspired by Codex Sites' two-stage save→deploy pattern; powered by cloudbase-mcp.
npx claudepluginhub tencentcloudbase/cloudbase-mcpTencent CloudBase — AI models, authentication, NoSQL/MySQL databases, cloud functions, cloud storage, CloudRun backend services, and WeChat Mini Program integration. Powered by cloudbase-mcp.
MCP servers with TypeScript on Cloudflare Workers using @modelcontextprotocol/sdk. Use for API integrations, stateless tools, edge deployments, or encountering export syntax, schema validation, memory leak, CORS, auth errors.
MCP server development helper with tool and resource scaffolding
You say it, AutoCode ships it. 47 skills. Code to deployment in one session. I-Lang v4.0 powered.
Build FastMCP 3.x Python MCP servers — covers provider/transform architecture (including CodeMode, Tool Search, and server-level transforms), component versioning, session state, authorization (MultiAuth, PropelAuth, connection-pooled token verifiers), evaluation creation, Pydantic validation, async patterns, STDIO and HTTP transports, nginx reverse proxy deployment, background tasks, Prefab Apps UI, security patterns, client SDK usage, testing, deployment, and migration from FastMCP v2. TypeScript is a legacy reference only and is not updated for v3.
Claude Code skill pack for Replit (30 skills)