@vkse/sse-mcp-skill 1.0.1 → 1.0.3

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 (3) hide show
  1. package/README.md +2 -0
  2. package/package.json +4 -1
  3. package/server.js +0 -0
package/README.md CHANGED
@@ -61,6 +61,8 @@ npm install
61
61
  npm start
62
62
  # 或
63
63
  node server.js
64
+ # 或
65
+ npx -y @vkse/sse-mcp-skill
64
66
  ```
65
67
 
66
68
  启动后,服务监听 `http://localhost:3000`,终端将输出:
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@vkse/sse-mcp-skill",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "main": "server.js",
6
+ "bin": {
7
+ "@vkse/sse-mcp-skill": "server.js"
8
+ },
6
9
  "scripts": {
7
10
  "start": "node server.js",
8
11
  "publish:npm": "npm publish --access public",
package/server.js CHANGED
File without changes