video-context-mcp-server 0.13.0-beta → 0.13.1-beta

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 +11 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -46,7 +46,17 @@ npm install -g video-context-mcp-server
46
46
 
47
47
  This installs the executable command: `video-context-mcp`.
48
48
 
49
- > **Tip:** Periodically re-run the above command to get the latest version:
49
+ > **Tip:** To check your installed version and whether an update is available:
50
+ >
51
+ > ```bash
52
+ > # Check installed version
53
+ > npm ls -g --depth=0 video-context-mcp-server
54
+ >
55
+ > # Check if outdated
56
+ > npm outdated -g video-context-mcp-server
57
+ > ```
58
+ >
59
+ > To update to the latest version, re-run:
50
60
  >
51
61
  > ```bash
52
62
  > npm install -g video-context-mcp-server@latest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "video-context-mcp-server",
3
- "version": "0.13.0-beta",
3
+ "version": "0.13.1-beta",
4
4
  "description": "A Model Context Protocol server that gives GitHub Copilot the ability to understand and analyze video content",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",