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

@tencentcloud/sdk-mcp

v1.7.0

Published

Tencent Cloud MCP Server for SDK

Readme

腾讯云 SDK MCP Server 使用说明

本仓库提供一个基于 CLI 的 Model Context Protocol(MCP)Server,向 LLM 工具暴露腾讯云 SDK 文档与 API 资料,帮助 AI Agent 更准确地理解并集成腾讯云实时音视频能力。

功能特性

  • 高效检索:支持腾讯云实时音视频文档检索,快速定位官方资料与实践说明。
  • 覆盖全面:支持 Chat(IM)、Call、Live、Room、RTCEngine(TRTC SDK)、TIMPush 等产品域。
  • 智能路由:支持产品/平台语义识别与消歧,在必要时引导补齐平台与框架信息。
  • 集成友好:除文档问答外,提供 Web / Android / iOS / Flutter 等含 UI 集成入口。
  • 官方可信:基于官方资料,提升答案可靠性与可落地性。
  • 广泛兼容:通过 STDIN/STDOUT 的 JSON-RPC 提供 MCP 能力,可接入 Cursor / Codex / Claude / CodeBuddy 等 MCP 客户端。
  • 开箱即用npx 即可运行,低接入门槛。

环境要求

  • Node.js(>= 18)与 npm
  • 支持 MCP 的 IDE

使用方式

标准接入流程

  • Step1:在你的 Cursor 项目中,创建或编辑 .cursor/mcp.json~/.cursor/mcp.json,添加如下配置。
{
  "mcpServers": {
    "tencentcloud-sdk-mcp": {
      "command": "npx",
      "args": ["-y", "@tencentcloud/sdk-mcp@latest"],
      "env": {
        "SDKAPPID": "YOUR_SDKAPPID",
        "SECRETKEY": "YOUR_SECRET_KEY"
      }
    }
  }
}

保存后会弹出提示,在提示中点击 Enable

mcp-server-prompt

  • Step2:进入 Cursor Settings(右上角齿轮)-> MCP,确认 tencentcloud-sdk-mcp 已启用。

cursor-setting

  • Step3:在 IDE 中直接描述你的需求,让 AI 基于腾讯云 SDK 文档完成实现或答疑。

可选:全局安装

如需在本地全局快速调用,可先执行:

npx -y @tencentcloud/sdk-mcp

更新记录

仅展示最近更新,完整历史请查看 CHANGELOG.md

Version 1.7.0 @2026.08.02

新增

  • 补充并同步 Chat / Call / Live / Room 等产品域最佳实践文档,增强知识覆盖范围。

变更

  • 持续重构双语检索链路,优化 query 归一化、意图路由、候选过滤与精确命中策略。
  • 优化最佳实践与 URL 类文档的召回与排序,提升问答结果可用性与稳定性。
  • 优化 search_trtc_knowledge 相关定义与答复约束,提升回答可读性与可执行性。

修复

  • 修复复杂问法下部分检索结果偏题的问题,降低高分误召回概率。

Version 1.6.6 @2026.07.18

新增

  • 支持 get_native_live_uikit_integration 工具,支持 LiveKit(Android/iOS) 含 UI 集成。

Version 1.6.0 @2026.07.01

新增

  • 重构 MCP 检索能力,收敛 MCP 工具数量。
  • 支持 search_trtc_knowledge 工具,支持实时音视频(TRTC/IM)相关文档检索。