npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cloudbase/cloudbase-mcp

v2.33.1

Published

CloudBase MCP Server — operate Tencent CloudBase (database, auth, functions, storage, hosting) from AI coding tools via the Model Context Protocol. Part of CloudBase AI Toolkit.

Downloads

77,668

Readme

@cloudbase/cloudbase-mcp

腾讯云开发 CloudBase 的 MCP Server。 属于 CloudBase AI Toolkit

在 AI 编程工具里通过 Model Context Protocol 操作 CloudBase:登录、数据库、云函数、存储、托管与日志。

简体中文 · English · Toolkit 总览 · 文档 · 更新日志 · Issues

这个包是什么

@cloudbase/cloudbase-mcp 是 CloudBase MCP Server 的 npm 发行包,是 Toolkit 中的一块:

| 组件 | 作用 | |------|------| | Plugin | 一次安装 MCP + Skills + Hooks | | Agent Skills | 场景化技能,约束可落地的 CloudBase 实践 | | MCP(本包) | Agent 调用的工具,作用于你的云开发环境 |

IDE 支持时优先用 Plugin;只需 MCP 配置时用本包即可。

完整 Toolkit 叙事、相关仓库与 IDE 列表见 仓库 README

快速开始

{
  "mcpServers": {
    "cloudbase": {
      "command": "npx",
      "args": ["@cloudbase/cloudbase-mcp@latest"]
    }
  }
}

首次提示:

登录云开发
用 CloudBase Skills 做一个带登录、数据库和权限的待办应用,然后部署

需要已开通 云开发环境,并对 AI 发起的敏感操作自行确认。

其他安装路径

| 路径 | 适用 | |------|------| | Official MCP Registry io.github.TencentCloudBase/cloudbase-mcp | registry search=cloudbase 发现 | | npx plugins add TencentCloudBase/cloudbase-plugin | 支持 Open Plugin Spec 的工具 | | npm i -g @cloudbase/cli && tcb ai | CloudBase AI CLI 统一配置多种 IDE | | Marketplace / 内置插件 | Claude Code、Codex、CodeBuddy、WorkBuddy、Kimi Code、Kimi Work、ZCode 等 |

连接方式

本地(默认):本机 npx,功能最全(含本地文件上传/模板)。需 Node.js v18.15.0+。

托管:IDE 通过 HTTP 连接腾讯云 MCP,无需本机 Node。部分依赖本地文件的能力不可用。

{
  "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>"
      }
    }
  }
}

托管 URL 可用 site=domestic 指定登录站点(国内站新加坡需 site=domestic),也可用 enable_plugins / disable_plugins(逗号分隔)裁剪工具集。插件名见本包 src/server.ts(如 envdatabasefunctionshostingstoragepg_databasecloudrunlogs)。

自建 Cloud Mode:设置 CLOUDBASE_MCP_CLOUD_MODE=true(或 MCP_CLOUD_MODE=true),禁用面向远程调用方的本地文件/进程类工具。

| 场景 | 建议 | |------|------| | 个人开发 | 本地 npx | | 团队 / 免运维 | 托管 HTTP | | 自建 MCP | 必须开 Cloud Mode |

能力

在你的环境中完成常见后端工作(关键步骤请确认):

  • 数据库:PostgreSQL 与文档型数据库、数据模型、CRUD、权限
  • 计算:云函数 / 云托管——编写、部署、调用、排障
  • 认证与存储:登录方式、对象存储、与数据权限联动
  • 发布与运维:静态托管 / 小程序发布;日志与重新部署

工具目录:MCP 工具 · tools.json

IDE 配置片段

{
  "mcpServers": {
    "cloudbase": {
      "command": "npx",
      "args": ["@cloudbase/cloudbase-mcp@latest"]
    }
  }
}
{
  "mcpServers": {
    "cloudbase": {
      "command": "npx",
      "args": ["@cloudbase/cloudbase-mcp@latest"]
    }
  }
}

已内置 CloudBase,通常无需手动配置 MCP。

其他:IDE 配置指南

文档

许可证

MIT · TencentCloudBase