YuQueMCP MCP Server

基于 go-zero MCP 组件开发的语雀 Model Context Protocol 服务器,为 AI 助手提供语雀知识库操作能力。

Local serverstdioGo

What is the YuQueMCP MCP server?

YuQueMCP becomes available to MCP clients through the yuquemcp mcp server. 基于 go-zero MCP 组件开发的语雀 Model Context Protocol 服务器,为 AI 助手提供语雀知识库操作能力。.

What YuQueMCP does

基于 go-zero MCP 组件开发的语雀 Model Context Protocol 服务器,为 AI 助手提供语雀知识库操作能力。

Tools it exposes

Once connected, the assistant can call these 12 tools directly:

  • book_id — 知识库ID或路径
  • doc_id — 文档ID或slug
  • title — 文档标题
  • body — 文档内容(可选)
  • format — 文档格式,默认markdown
  • public — 公开设置,默认0(私密)
  • query — 搜索关键词
  • yuque_get_current_user — The yuque_get_current_user tool exposed by this server
  • yuque_get_document — The yuque_get_document tool exposed by this server
  • yuque_create_document — 创建新文档。 - book_id: 知识库ID或路径 - title: 文档标题 - body: 文档内容(可选) - format: 文档格式,默认markdown - public: 公开设置,默认0(私密)
  • yuque_update_document — 更新文档内容。 - book_id: 知识库ID或路径 - doc_id: 文档ID或slug - title: 新标题(可选) - body: 新内容(可选) - format: 文档格式(可选) - public: 公开设置(可选)
  • yuque_search_documents — The yuque_search_documents tool exposed by this server

Installing the yuquemcp mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply one environment variable: YUQUE_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. YuQueMCP sits in that group, and the shape of its toolset — book_id, doc_id, title among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 12 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use YuQueMCP.
  • Maintained by ArianChen777, written in Go.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the yuquemcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
book_id知识库ID或路径
doc_id文档ID或slug
title文档标题
body文档内容(可选)
format文档格式,默认markdown
public公开设置,默认0(私密)
query搜索关键词
yuque_get_current_userThe yuque_get_current_user tool exposed by this server.
yuque_get_documentThe yuque_get_document tool exposed by this server.
yuque_create_document创建新文档。 - book_id: 知识库ID或路径 - title: 文档标题 - body: 文档内容(可选) - format: 文档格式,默认markdown - public: 公开设置,默认0(私密)
yuque_update_document更新文档内容。 - book_id: 知识库ID或路径 - doc_id: 文档ID或slug - title: 新标题(可选) - body: 新内容(可选) - format: 文档格式(可选) - public: 公开设置(可选)
yuque_search_documentsThe yuque_search_documents tool exposed by this server.

Configuration

VariableDescriptionRequired
YUQUE_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use YuQueMCP to book id.
  • Use YuQueMCP to doc id.
  • Use YuQueMCP to title.

Frequently asked questions

It connects YuQueMCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (book_id, doc_id, title, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with YuQueMCP directly.