fix: resolve website issues - deprecated tools, broken links, missing install guides#63
Merged
Merged
Conversation
|
added 5 commits
April 3, 2026 17:18
- Fix Feature Request link 404 (#61): Replace broken Discussions links in issue template config with a proper feature_request.yml template, since Discussions is not enabled on this repo. - Remove deprecated tools from website (#59): Update MCP tools list from 20 to 16 tools to match current yuque-mcp-server. Removed yuque_list_groups, yuque_hello, yuque_list_doc_versions, yuque_get_doc_version. Renamed repos→books to match API naming. - Add Claude Code and Codex install guides (#62): Add Claude Code (direct MCP config via `claude mcp add`) and OpenAI Codex (`codex mcp add` + config.toml) as client options in Quick Start.
- yuque_list_repos → yuque_list_books - yuque_get_repo → yuque_get_book - yuque_get_repo_docs → yuque_list_docs - Updated across yuque-personal, yuque-group, openclaw, and opencode skills
- Updated AGENT-INSTALL.md for claude-code, opencode, shared/mcp-config - Updated opencode README.md and README.en.md - Removed references to deleted tools (delete_doc, doc_history, groups, comments, statistics) - New categories: User, Search, Books, Docs, TOC, Notes
- 25 MCP Tools → 16 MCP Tools everywhere - 25 Tools → 16 Tools in directory comments - Fix personal plugin skill count: 4 Skills → 8 Skills - Updated marketplace.json, plugin.json, READMEs
- Modules.tsx: 25 → 16 tools count - Skills.tsx: get_repo_docs → list_docs in skill tags - Skills.tsx: fix broken GitHub links (claude-code/personal → yuque-personal)
414bb12 to
0883f13
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR fixes three website-related issues in a single changeset.
Issue #61: Feature Request link 404
/discussions/categories/ideasand/discussions/categories/q-a, but Discussions is not enabled on this repo (has_discussions: false).feature_request.ymlissue template and updatedconfig.ymlto remove broken Discussions links. Feature requests now go through the standard issue form.Issue #59: Website shows deprecated tools
McpTools.tsxto match the current tool list:yuque_list_groups,yuque_hello,yuque_list_doc_versions,yuque_get_doc_versionreposcategory →books(matching API naming:yuque_list_books,yuque_get_book, etc.)Issue #62: Missing Claude Code and Codex install guides
npx yuque-mcp install, missing Claude Code (direct MCP) and OpenAI Codex.McpQuickStart.tsx:claude mcp add yuque-mcp -- npx -y yuque-mcp --token=YOUR_TOKEN(with env var alternative)codex mcp add yuque --env YUQUE_PERSONAL_TOKEN=YOUR_TOKEN -- npx -y yuque-mcp(with config.toml alternative)Files Changed
.github/ISSUE_TEMPLATE/config.yml— Removed broken Discussions links.github/ISSUE_TEMPLATE/feature_request.yml— New feature request templatewebsite/src/components/McpTools/McpTools.tsx— Updated tool list (20→16)website/src/components/McpQuickStart/McpQuickStart.tsx— Added Claude Code & Codex tabsVerification
npm run buildpasses successfullyCloses #59, Closes #61, Closes #62