yuque-mcp-plus 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/README.en.md +853 -0
- package/README.md +882 -0
- package/RELEASE.md +105 -0
- package/package.json +46 -0
- package/src/config.js +37 -0
- package/src/index.js +17 -0
- package/src/server.js +55 -0
- package/src/tools.js +514 -0
- package/src/yuque-client.js +545 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.2.0 - 2026-03-04
|
|
4
|
+
|
|
5
|
+
Added:
|
|
6
|
+
|
|
7
|
+
- default repository resolution with fallback tracing via `_defaultSource`
|
|
8
|
+
- repository TOC tree retrieval
|
|
9
|
+
- document creation with `parentUuid`
|
|
10
|
+
- document and TOC node movement
|
|
11
|
+
- TOC node creation and dedicated deletion support
|
|
12
|
+
- automatic root TOC node deletion strategy
|
|
13
|
+
- official naming compatibility aliases
|
|
14
|
+
- generic OpenAPI passthrough via `yuque_request`
|
|
15
|
+
- group, member, version, and stats tools
|
|
16
|
+
- Chinese and English usage documentation
|
|
17
|
+
- real integration notes and troubleshooting guides
|
|
18
|
+
- `yuque_multipart_request` for upload-style attachment workflows where official endpoints are known
|
|
19
|
+
|
|
20
|
+
Verified:
|
|
21
|
+
|
|
22
|
+
- `npm run check`
|
|
23
|
+
- `npm test`
|
|
24
|
+
- live Yuque integration for TOC creation, movement, deletion, and doc attachment
|
|
25
|
+
|
|
26
|
+
## 0.1.0 - 2026-03-04
|
|
27
|
+
|
|
28
|
+
Initial local `yuque-mcp-plus` scaffold:
|
|
29
|
+
|
|
30
|
+
- Node.js MCP server entrypoint
|
|
31
|
+
- Yuque API client wrapper
|
|
32
|
+
- base tool registration and command routing
|