AgentHubAgentHub

Yuque MCP

MCP ServerMCP Registry官方收录

io.github.wwwwujl/yuque-mcp · v1.1.0

Yuque MCP server with safe read/write tools for groups, group members, repositories, docs, and TOC.

概览

Yuque MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "yuque-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@wwwwwujl/yuque-mcp"
      ],
      "env": {
        "YUQUE_TOKEN": "<YUQUE_TOKEN>"
      }
    }
  }
}

环境变量

YUQUE_TOKEN必填secret

Yuque API token

YUQUE_ENDPOINT可选

Yuque API endpoint (optional)

YUQUE_TIMEOUT_MS可选

Yuque API timeout in milliseconds (optional)

YUQUE_MAX_RETRIES可选

Read-only retry count (optional)

YUQUE_ALLOW_WRITE可选

Enable write tools when true (optional, default false)

YUQUE_WRITE_NAMESPACE_ALLOWLIST可选

Comma-separated namespace allowlist for repo/doc/toc writes (optional)

YUQUE_WRITE_GROUP_ALLOWLIST可选

Comma-separated group login allowlist for group writes (optional)

YUQUE_ALLOW_DELETE可选

Enable delete tools when true (optional, default false)

YUQUE_DELETE_NAMESPACE_ALLOWLIST可选

Comma-separated delete allowlist targets (optional)

YUQUE_FILE_ROOT可选

Allowed root directory for file-based doc tools (optional, default current working directory)

YUQUE_FILE_MAX_BYTES可选

Maximum size for file-based doc tools (optional, default 1048576)

YUQUE_FILE_ALLOWED_EXTENSIONS可选

Comma-separated allowed extensions for file-based doc tools (optional, default .md,.markdown,.txt)

相关资源

统一 Manifest

{
  "id": "io.github.wwwwujl/yuque-mcp",
  "type": "mcp-server",
  "version": "1.1.0",
  "displayName": "Yuque MCP",
  "description": "Yuque MCP server with safe read/write tools for groups, group members, repositories, docs, and TOC.",
  "repository": {
    "url": "https://github.com/wwwwujl/yuque-mcp",
    "source": "github"
  },
  "homepage": "https://github.com/wwwwujl/yuque-mcp",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@wwwwwujl/yuque-mcp",
        "version": "1.1.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "YUQUE_TOKEN",
            "description": "Yuque API token",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "YUQUE_ENDPOINT",
            "description": "Yuque API endpoint (optional)"
          },
          {
            "name": "YUQUE_TIMEOUT_MS",
            "description": "Yuque API timeout in milliseconds (optional)"
          },
          {
            "name": "YUQUE_MAX_RETRIES",
            "description": "Read-only retry count (optional)"
          },
          {
            "name": "YUQUE_ALLOW_WRITE",
            "description": "Enable write tools when true (optional, default false)"
          },
          {
            "name": "YUQUE_WRITE_NAMESPACE_ALLOWLIST",
            "description": "Comma-separated namespace allowlist for repo/doc/toc writes (optional)"
          },
          {
            "name": "YUQUE_WRITE_GROUP_ALLOWLIST",
            "description": "Comma-separated group login allowlist for group writes (optional)"
          },
          {
            "name": "YUQUE_ALLOW_DELETE",
            "description": "Enable delete tools when true (optional, default false)"
          },
          {
            "name": "YUQUE_DELETE_NAMESPACE_ALLOWLIST",
            "description": "Comma-separated delete allowlist targets (optional)"
          },
          {
            "name": "YUQUE_FILE_ROOT",
            "description": "Allowed root directory for file-based doc tools (optional, default current working directory)"
          },
          {
            "name": "YUQUE_FILE_MAX_BYTES",
            "description": "Maximum size for file-based doc tools (optional, default 1048576)"
          },
          {
            "name": "YUQUE_FILE_ALLOWED_EXTENSIONS",
            "description": "Comma-separated allowed extensions for file-based doc tools (optional, default .md,.markdown,.txt)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.wwwwujl/yuque-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.wwwwujl%2Fyuque-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Yuque MCP — MCP Server 安装与配置 · AgentHub