@ppdocs/mcp 2.6.12 → 2.6.13

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.
Files changed (2) hide show
  1. package/dist/utils.js +1 -1
  2. package/package.json +1 -1
package/dist/utils.js CHANGED
@@ -11,7 +11,7 @@ let cacheProjectId = null;
11
11
  function formatUserStyles(styles) {
12
12
  if (!styles || styles.length === 0)
13
13
  return '';
14
- return styles.map(s => `- ${s}`).join('\n');
14
+ return styles.map((s, i) => `${i + 1}. ${s}`).join('\n\n');
15
15
  }
16
16
  /**
17
17
  * 获取根节点的用户风格
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ppdocs/mcp",
3
- "version": "2.6.12",
3
+ "version": "2.6.13",
4
4
  "description": "ppdocs MCP Server - Knowledge Graph for Claude",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",