yuque-mcp-plus 0.2.3 → 0.3.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 +12 -0
- package/package.json +1 -1
- package/src/server.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0 - 2026-03-04
|
|
4
|
+
|
|
5
|
+
Changed:
|
|
6
|
+
|
|
7
|
+
- release as the final recommended version
|
|
8
|
+
|
|
9
|
+
## 0.2.4 - 2026-03-04
|
|
10
|
+
|
|
11
|
+
Fixed:
|
|
12
|
+
|
|
13
|
+
- kept the stdio MCP process alive after startup so client initialization can complete
|
|
14
|
+
|
|
3
15
|
## 0.2.3 - 2026-03-04
|
|
4
16
|
|
|
5
17
|
Fixed:
|
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -21,7 +21,7 @@ export function createServer() {
|
|
|
21
21
|
const server = new Server(
|
|
22
22
|
{
|
|
23
23
|
name: "yuque-mcp-plus",
|
|
24
|
-
version: "0.
|
|
24
|
+
version: "0.3.0"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
capabilities: {
|
|
@@ -52,4 +52,5 @@ export async function startServer() {
|
|
|
52
52
|
const server = createServer();
|
|
53
53
|
const transport = new StdioServerTransport();
|
|
54
54
|
await server.connect(transport);
|
|
55
|
+
await new Promise(() => {});
|
|
55
56
|
}
|