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

multi-cloud-docs-search

v1.3.15

Published

MCP Server for multi-cloud provider documentation search — search and retrieve official cloud vendor docs directly in AI coding assistants

Readme

一个工具,搜遍天下云 — 多云官网文档搜索 MCP

一个工具,搜遍天下云。 ☁️
在 AI 编程助手中直接搜索和获取云厂商官方产品文档与价格。适配器架构,支持 14 个云厂商

做多云项目最怕什么?每个云一套文档,来回切换控制台。这个工具一条命令搞定:搜文档、看目录、查价格。

典型场景:

  • 多云选型对比 — 不用挨个官网翻页,一条命令搜遍各家文档
  • 查产品计费方式 — 直接出价格,不用在定价页面里翻找
  • 跨厂商搜同类功能 — 搜"弹性伸缩""负载均衡",看各家怎么实现的

配到 Claude / Cursor / Windsurf 就能用,开源免费。

安装配置

在 Claude Code、Cursor、Windsurf 等支持 MCP 的客户端中,添加以下配置:

从 npm 安装(推荐,自动更新):

{
  "mcpServers": {
    "multi-cloud-docs-search": {
      "command": "npx",
      "args": ["-y", "multi-cloud-docs-search@latest"]
    }
  }
}

从 GitHub 安装(自动更新):

{
  "mcpServers": {
    "multi-cloud-docs-search": {
      "command": "npx",
      "args": ["-y", "github:octopuszy-zhangyu/multi-cloud-docs-search"]
    }
  }
}

国内镜像加速: npm config set registry https://registry.npmmirror.com/

可用工具

所有工具第一个参数为 provider(云厂商标识)。

| 工具 | 参数 | 说明 | |------|------|------| | list_products | provider, keyword? | 获取产品文档列表 | | get_document_toc | provider, productId, keyword? | 获取文档目录 | | search_documents | provider, productId, keyword | 搜索文档正文 | | get_page_metadata | provider, pageId | 获取页面元信息 | | get_page_content | provider, contentPath | 获取 Markdown 正文 | | get_product_price | provider, productId?, quick? | 获取产品价格信息 |

支持的云厂商

| provider | 名称 | 类型 | |----------|------|------| | ctyun | 天翼云 | 传统云 | | aliyun | 阿里云 | 传统云 | | volcengine | 火山引擎 | 传统云 | | tencent | 腾讯云 | 传统云 | | huawei | 华为云 | 传统云 | | ecloud | 移动云 | 传统云 | | cucloud | 联通云 | 传统云 | | baidu | 百度云 | 传统云 | | bailian | 阿里云百炼 | AI 平台 | | deepseek | DeepSeek | AI 平台 | | glm | 智谱 GLM | AI 平台 | | minimax | MiniMax | AI 平台 | | kimi | 月之暗面 Kimi | AI 平台 |

价格获取

get_product_price 工具支持获取云厂商产品价格信息:

| 厂商 | 方式 | 说明 | |------|------|------| | 天翼云 | 内部价格计算器 API + 文档引导 | ECS/云电脑:API 实时价格;其他产品(EVS 等):引导从文档获取 | | 阿里云 | 价格计算器 API | ECS 实例/系统盘/数据盘/带宽价格 | | 火山引擎 | GetTable API | 通过 SSR 定价页面获取完整定价表格 | | 腾讯云 | CVM API | 并行查询多地域实例配置和价格 | | 华为云 | export/productlist API | 支持 100+ 产品 | | DeepSeek / MiniMax / Kimi | 定价文档解析 | 直接从定价页面提取 | | 阿里云百炼 | 文档 API | 从文档中解析价格 |

本地开发

git clone https://github.com/octopuszy-zhangyu/multi-cloud-docs-search.git
cd multi-cloud-docs-search
npm install
npm run start    # 启动 MCP Server
npm run dev      # 开发模式(文件监听)
npm run build    # TypeScript 编译检查

许可证

GPL-3.0