Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"yuque-mcp-server": {
"args": [
"-y",
"@HenryHaoson/Yuque-MCP-Server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
一个用于与语雀 API 集成的 Model-Context-Protocol (MCP) 服务器。此实现受 Figma-Context-MCP 的启发,并使用 语雀开放 API。
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@HenryHaoson/Yuque-MCP-Server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @HenryHaoson/Yuque-MCP-Server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / writing
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
A markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
MCP Security Weekly
Get CVE alerts and security updates for Yuque MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
一个用于与语雀 API 集成的 Model-Context-Protocol (MCP) 服务器。此实现受 Figma-Context-MCP 的启发,并使用 语雀开放 API。
该服务器提供了与语雀知识库平台交互的 MCP 工具,允许 AI 模型:
要使用 Smithery 将 Yuque MCP Server 自动安装到 Claude 桌面端:
npx -y @smithery/cli install @HenryHaoson/Yuque-MCP-Server --client claude
克隆此仓库:
git clone https://github.com/Henryhaoson/Yueque-MCP-Server.git
cd Yueque-MCP-Server
安装依赖:
npm install
基于 .env.example 创建 .env 文件:
cp .env.example .env
(可选) 在 .env 文件中添加你的语雀 API 令牌:
YUQUE_API_TOKEN=your_yuque_api_token_here
你也可以选择在连接到服务器时通过查询参数提供令牌,而不是在 .env 文件中设置。
# HTTP 服务器模式
npm run dev
# CLI stdio 模式
npm run dev:cli
首先,构建项目:
npm run build
然后在 HTTP 或 CLI 模式下运行:
# HTTP 服务器模式
npm run start
# CLI stdio 模式
npm run start:cli
本项目提供了 Docker 支持,使您可以轻松地容器化和部署服务器。
构建并启动容器:
docker-compose up -d
查看日志:
docker-compose logs -f
停止服务:
docker-compose down
您可以通过环境变量或在 .env 文件中设置配置项:
# .env 文件示例
PORT=3000
YUQUE_API_TOKEN=your_token_here
YUQUE_API_BASE_URL=https://www.yuque.com/api/v2
构建 Docker 镜像:
docker build -t yuque-mcp-server .
运行容器:
docker run -d -p 3000:3000 --name yuque-mcp-server yuque-mcp-server
使用环境变量:
docker run -d -p 3000:3000 \
-e YUQUE_API_TOKEN=your_token_here \
-e YUQUE_API_BASE_URL=https://www.yuque.com/api/v2 \
--name yuque-mcp-server yuque-mcp-server
语雀 MCP 服务器提供以下工具:
get_current_user - 获取当前认证用户的信息,包括用户ID、用户名、头像等语雀账号基本信息get_user_docs - 获取当前用户的所有知识库文档列表,包括私人和协作文档get_user_repos - 获取指定用户的知识库列表,知识库是语雀中组织文档的集合get_repo_docs - 获取特定知识库中的所有文档列表,包括文档标题、更新时间等信息get_doc - 获取语雀中特定文档的详细内容,包括正文、修改历史和权限信息create_doc - 在指定知识库中创建新的语雀文档,支持多种格式内容(Markdown、HTML、Lake)update_doc - 更新语雀中已存在的文档,可以修改标题、内容或权限设置delete_doc - 从语雀知识库中删除指定文档,此操作不可撤销search - 在语雀平台中搜索文档或知识库内容,支持范围和作者筛选get_group_statistics - 获取团队的汇总统计数据,包括成员人数、文档数量、阅读量和互动数据等get_group_member_statistics - 获取团队成员的统计数据,包括各成员的编辑次数、阅读量、点赞量等get_group_book_statistics - 获取团队知识库的统计数据,包括各知识库的文档数、字数、阅读量等get_group_doc_statistics - 获取团队文档的统计数据,包括各文档的字数、阅读量、评论量等此 MCP 服务器可以与支持 Model-Context-Protocol 的 AI 模型一起使用,允许它们通过定义的工具与语雀交互。例如:
当连接到 SSE 端点时,你可以通过查询参数(query parameters)覆盖环境配置,这些参数的优先级高于环境变量:
accessToken: 覆盖在 .env 文件中设置的语雀 API 令牌baseUrl: 覆盖在 .env 文件中设置的语雀 API 基础 URL示例:
http://localhost:3000/sse?accessToken=your_token_here&baseUrl=https://custom.yuque.api/v2
这允许你在不修改 .env 文件的情况下动态配置服务,并且查询参数的优先级高于环境变量。这对于多用户环境或测试不同 API 端点特别有用。
每个 SSE 连接都可以使用不同的配置,这使得同一个服务器实例可以同时为不同的用户或环境提供服务。
src/
├── config.ts # 服务器配置
├── index.ts # 主入口点
├── cli.ts # CLI 入口点
├── server.ts # MCP 服务器实现
└── services/
└── yuque.ts # 语雀 API 服务
要添加新工具,请修改 src/server.ts 中的 registerTools 方法。
最近的更新增加了以下功能:
团队统计数据:添加了获取团队、成员、知识库和文档统计数据的功能,便于分析和监控团队知识库的使用情况。
文档管理增强:
数据类型完善:更新了接口定义,使其与语雀 OpenAPI 规范保持一致。
MIT License
Copyright (c) 2025 Henryhaoson
Per