中文 | English | 🤖 Agent Install
The unified home for everything in the Yuque AI ecosystem — website, plugins, skills, and shared resources.
📖 语雀 + AI:从文档工具到你的第二大脑 — 了解语雀 AI 生态的完整愿景
This is a Stripe-style monorepo: one core SDK (yuque-mcp-server) + one ecosystem repository (this repo) containing all client integrations.
| Repository | Purpose | Stripe Analogy |
|---|---|---|
| yuque-mcp-server | Core MCP Server (npm package) | stripe-node (SDK) |
| yuque-ecosystem (this repo) | Website + All Client Plugins + Skills | stripe-examples + docs |
yuque-ecosystem/
├── website/ # Official website (GitHub Pages)
├── plugins/
│ ├── claude-code/ # Claude Code Plugin (Marketplace)
│ │ ├── personal/ # Personal edition — 25 Tools + 8 Skills
│ │ └── group/ # Team edition — 25 Tools + 6 Skills
│ ├── opencode/ # OpenCode Plugin (MCP + Skills)
│ │ ├── personal/ # Personal edition — 25 Tools + 8 Skills
│ │ └── group/ # Team edition — 25 Tools + 6 Skills
│ └── openclaw/ # OpenClaw Plugin (Agent Skills)
├── shared/
│ └── mcp-config/ # MCP config templates for various editors
├── .claude-plugin/ # Claude Code Marketplace entry
└── package.json # npm workspaces root
# Option 1: Install via Marketplace
claude plugin marketplace add yuque/yuque-ecosystem
# Option 2: Add MCP Server directly
claude mcp add yuque-mcp -- npx -y yuque-mcp --token=YOUR_TOKENAdd to your opencode.json:
See plugins/opencode/ for skills installation and full setup guide.
See shared/mcp-config/ for configuration templates for Cursor, Windsurf, GitHub Copilot (VS Code), and more.
| Module | Description | Link |
|---|---|---|
| 🌐 Website | Official ecosystem website | website/ |
| 🔌 Claude Code Plugin | Claude Code Marketplace plugin | plugins/claude-code/ |
| 🟢 OpenCode Plugin | OpenCode MCP + Skills integration | plugins/opencode/ |
| 🤖 OpenClaw Plugin | OpenClaw Agent integration | plugins/openclaw/ |
| 📋 MCP Config | Editor configuration templates | shared/mcp-config/ |
# Website development
cd website
npm install
npm run dev
# OpenClaw Plugin development
cd plugins/openclaw
npm install
npm run buildMIT © Yuque
{ "mcp": { "yuque": { "type": "local", "command": ["npx", "-y", "yuque-mcp", "--token=YOUR_TOKEN"] } } }