video-context-mcp-server 0.50.1-beta → 0.50.3-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.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  An MCP server that gives coding assistants (GitHub Copilot, Cursor, Claude Code) the ability to understand and analyze video content.
4
4
 
5
- **[Watch the demo](https://www.youtube.com/watch?v=Xm6fgWXnVYk)**<br />
5
+ **[Official Documentation](https://www.videocontextmcp.com/)**<br />
6
6
  **[Tutorials Playlist](https://www.youtube.com/playlist?list=PL3Big7arQA0Rc1B6WVLmZqXKwDyp1fyme)**
7
7
 
8
8
  ## Features
@@ -40,7 +40,7 @@ After install, two equivalent CLI commands are available: `video-context-mcp` (f
40
40
  ### Updating & version check
41
41
 
42
42
  ```bash
43
- npm ls -g --depth=0 video-context-mcp-server # installed version
43
+ npm ls -g video-context-mcp-server # installed version
44
44
  npm outdated -g video-context-mcp-server # check for updates
45
45
  npm install -g video-context-mcp-server@latest # update
46
46
  ```
@@ -486,9 +486,9 @@ vmcp cache clear:all --yes # skip confirmation
486
486
 
487
487
  ### Video Summarization
488
488
 
489
- | Variable | Description | Default |
490
- | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- |
491
- | `VIDEO_MCP_MAX_FRAMES` | Max keyframes for `summarize_video` (GLM/Kimi/Qwen/MiMo only; Gemini uploads full video). **Free**: clamped 5–50. **Pro**: default 100; set `0` for uncapped. Either way, trailing frames are automatically dropped if the total payload exceeds the provider's size limit (12 MB for GLM, 10 MB for Qwen/MiMo, 80 MB for Kimi). | `50` free / `100` pro |
489
+ | Variable | Description | Default |
490
+ | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------- |
491
+ | `VIDEO_MCP_MAX_FRAMES` | Max keyframes for `summarize_video` (GLM/Qwen/MiMo always; Kimi only when video > 100 MB; Gemini always uploads full video). **Free**: clamped 5–50. **Pro**: default 100; set `0` for uncapped. Either way, trailing frames are automatically dropped if the total payload exceeds the provider's size limit (12 MB for GLM, 10 MB for Qwen/MiMo, 80 MB for Kimi's frame fallback). | `50` free / `100` pro |
492
492
 
493
493
  ### Qwen
494
494
 
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.50.1-beta";
1
+ export declare const VERSION = "0.50.3-beta";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
1
  // Auto-generated by scripts/sync-version.ts — do not edit
2
- export const VERSION = '0.50.1-beta';
2
+ export const VERSION = '0.50.3-beta';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "video-context-mcp-server",
3
- "version": "0.50.1-beta",
3
+ "version": "0.50.3-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",