yuque-mcp-plus 0.2.3 → 0.2.4

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.4 - 2026-03-04
4
+
5
+ Fixed:
6
+
7
+ - kept the stdio MCP process alive after startup so client initialization can complete
8
+
3
9
  ## 0.2.3 - 2026-03-04
4
10
 
5
11
  Fixed:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuque-mcp-plus",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Yuque MCP server with TOC, parentUuid, move, and multipart support.",
5
5
  "author": "michaeljou <864738795@qq.com>",
6
6
  "license": "MIT",
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.2.3"
24
+ version: "0.2.4"
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
  }