Files
sutong 750f981c7e feat: init media-center skill
资源中心——从多渠道获取资源链接,转存到夸克网盘并整理归档。
- sources/tencent-doc: 腾讯文档读取
- sources/search: 网盘搜索
- storage/quark: 夸克网盘操作
- ref/: 来源 skill 参考归档

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-16 18:28:23 +08:00

55 lines
950 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 腾讯文档 MCP — 安装配置
## 前置依赖
- Node.js >= 18
- npm(随 Node 自带)
- mcporterMCP 客户端)
```bash
# 检查 mcporter 是否已安装
mcporter --version
# 如未安装则全局安装
npm i -g mcporter
```
## 安装 MCP Server
腾讯文档的 MCP 通过远程 API 调用,无需本地安装服务端,只需配置 mcporter。
### 1. 授权认证
```bash
bash ref/tencent-docs/setup.sh tdoc_check_and_start_auth
```
输出 `AUTH_REQUIRED:<url>` 时,在浏览器打开该链接,用 QQ/微信扫码授权。
### 2. 获取 Token
授权完成后回复"已完成授权",然后执行:
```bash
bash ref/tencent-docs/setup.sh tdoc_fetch_token
```
输出 `TOKEN_READY` 表示成功。
### 3. 验证
```bash
mcporter list tencent-docs
```
列出 98 个工具即配置成功。
## 快速验证
```bash
# 查看个人空间
mcporter call tencent-docs query_space_list
# 正常返回即一切就绪
```