video-context-mcp-server 0.20.0-beta → 0.20.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.
- package/README.md +7 -8
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -354,14 +354,13 @@ Ask Copilot Chat:
|
|
|
354
354
|
|
|
355
355
|
## Backend Comparison
|
|
356
356
|
|
|
357
|
-
| Feature | Gemini 3 Flash Preview | GLM-4.6V
|
|
358
|
-
| -------------- | ---------------------------------------------- |
|
|
359
|
-
| Video formats | mp4, mpeg, mov, avi, flv, mpg, webm, wmv, 3gpp | mp4, avi, mov, wmv, webm, m4v
|
|
360
|
-
| Price | Free tier available |
|
|
361
|
-
|
|
|
362
|
-
|
|
|
363
|
-
|
|
|
364
|
-
| Best for | Fallback only (inaccurate despite features) | **Default** (free tier) | Alternative to GLM |
|
|
357
|
+
| Feature | Gemini 3 Flash Preview | GLM-4.6V | Kimi K2.5 |
|
|
358
|
+
| -------------- | ---------------------------------------------- | ------------------------------------ | ---------------------------------------------- |
|
|
359
|
+
| Video formats | mp4, mpeg, mov, avi, flv, mpg, webm, wmv, 3gpp | mp4, avi, mov, wmv, webm, m4v | mp4, mpeg, mov, avi, flv, mpg, webm, wmv, 3gpp |
|
|
360
|
+
| Price | Free tier available | Free tier available (GLM-4.6V-Flash) | $0.60 input / $3.00 output |
|
|
361
|
+
| Context window | 1M tokens | 128K | 256K |
|
|
362
|
+
| Max file size | 2 GB | ~20 MB (base64) | 100 MB |
|
|
363
|
+
| Best for | Fallback only (inaccurate despite features) | **Default** (free tier) | Alternative to GLM |
|
|
365
364
|
|
|
366
365
|
**GLM-4.6V is the default backend** — it offers a free tier (GLM-4.6V-Flash), making it a good zero-cost starting point. Kimi K2.5 is a paid alternative with broader format support; accuracy between the two has not been systematically compared. Gemini 3 Flash Preview is used as the **last resort fallback** despite its superior technical features (1M token context, 2GB file size, native multimodal audio+video support) because it has **proven inaccurate for video content analysis** in practice. Set `VIDEO_MCP_DEFAULT_PROVIDER=kimi` or `VIDEO_MCP_DEFAULT_PROVIDER=gemini` to switch the default. This env default is used when a tool call omits the `provider` parameter.
|
|
367
366
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.20.
|
|
1
|
+
export declare const VERSION = "0.20.1-beta";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "video-context-mcp-server",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.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",
|