@deppon/deppon-prd-mcp 0.1.0 → 0.1.1

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/README.md +10 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -52,9 +52,18 @@ npx @deppon/deppon-prd-mcp
52
52
  ```bash
53
53
  cd packages/deppon-prd-mcp
54
54
  npm run build
55
- npm run publish:auto
55
+ npm run publish:auto # npm @deppon/deppon-prd-mcp
56
+ npm run publish:registry # MCP 官方 Registry(需先 mcp-publisher login github)
56
57
  ```
57
58
 
59
+ ### MCP 官方 Registry
60
+
61
+ 1. 安装 CLI:`brew install mcp-publisher` 或见 [MCP Registry Quickstart](https://modelcontextprotocol.io/quickstart)
62
+ 2. 登录:`mcp-publisher login github`(namespace 须为 `io.github.<你的GitHub用户名>/deppon-prd-mcp`)
63
+ 3. 发布:`npm run publish:registry`
64
+
65
+ Registry 名称:`io.github.wangyang1103/deppon-prd-mcp`(与 `package.json` 的 `mcpName` 一致)
66
+
58
67
  ## 输出目录
59
68
 
60
69
  ```
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@deppon/deppon-prd-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
+ "mcpName": "io.github.wangyang1103/deppon-prd-mcp",
4
5
  "description": "私有化 PRD 生成 + 交互原型 MCP 服务(基于 deppon-prd-generator skill)",
5
6
  "license": "MIT",
6
7
  "type": "module",
@@ -28,7 +29,8 @@
28
29
  "dev": "npm run build && node dist/cli.js",
29
30
  "dev:web": "npm run build && node dist/cli.js --web-only",
30
31
  "prepack": "npm run build",
31
- "publish:auto": "npm publish"
32
+ "publish:auto": "npm publish",
33
+ "publish:registry": "mcp-publisher publish"
32
34
  },
33
35
  "dependencies": {
34
36
  "@modelcontextprotocol/sdk": "^1.12.1",