video-context-mcp-server 0.12.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.
- package/README.md +18 -7
- package/dist/services/providerRouter.js +1 -1
- 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:**
|
|
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
|
|
@@ -332,7 +342,7 @@ When a provider's API key is missing, the tool automatically falls back to the n
|
|
|
332
342
|
| `MOONSHOT_API_KEY` | Moonshot AI API key for Kimi K2.5 | Optional (required if using Kimi) |
|
|
333
343
|
| `Z_AI_API_KEY` | Z.AI API key for GLM-4.6V | Optional (required if using GLM) |
|
|
334
344
|
| `VIDEO_MCP_DEFAULT_PROVIDER` | Default video backend (`gemini`, `glm`, `kimi`) | Optional (default: `glm`) |
|
|
335
|
-
| `VIDEO_MCP_MAX_FRAMES` | Max frames for summarization (GLM/Kimi only) | Optional (default:
|
|
345
|
+
| `VIDEO_MCP_MAX_FRAMES` | Max frames for summarization (GLM/Kimi only) | Optional (default: 40; clamped to 5-100) |
|
|
336
346
|
| `DEEPGRAM_API_KEY` | Deepgram API key for `transcribe_video` | Optional (required if using Deepgram) |
|
|
337
347
|
| `ASSEMBLYAI_API_KEY` | AssemblyAI API key for `transcribe_video` | Optional (required if using AssemblyAI) |
|
|
338
348
|
| `GROQ_API_KEY` | Groq API key for Whisper transcription via `transcribe_video` | Optional (required if using Groq) |
|
|
@@ -435,15 +445,16 @@ npm run ltfb
|
|
|
435
445
|
video-mcp/
|
|
436
446
|
├── src/
|
|
437
447
|
│ ├── index.ts # MCP server entry point
|
|
438
|
-
│ ├── tools/ # MCP tool implementations
|
|
439
|
-
│
|
|
440
|
-
│ ├── services/ # Backend clients (Kimi, GLM, Gemini, ffmpeg)
|
|
448
|
+
│ ├── tools/ # MCP tool implementations (6 tools)
|
|
449
|
+
│ ├── services/ # Backend clients (Kimi, GLM, Gemini, ffmpeg, audioRouter)
|
|
441
450
|
│ │ └── audio/ # Audio provider clients (Deepgram, AssemblyAI, Groq)
|
|
442
|
-
│ └── utils/ # Helpers (
|
|
451
|
+
│ └── utils/ # Helpers (tempFiles, base64, videoUtils, downloadCache, audioUtils, logger)
|
|
443
452
|
├── .vscode/
|
|
444
453
|
│ └── mcp.json # VS Code MCP configuration
|
|
445
454
|
├── docs/
|
|
446
|
-
│
|
|
455
|
+
│ ├── features/ # Feature design and progress docs
|
|
456
|
+
│ ├── reviews/ # Codebase review notes
|
|
457
|
+
│ └── plan-and-progress.md # Implementation plan and iteration history
|
|
447
458
|
└── .github/
|
|
448
459
|
└── copilot-instructions.md # Copilot AI assistant guidelines
|
|
449
460
|
```
|
|
@@ -83,7 +83,7 @@ export function getRuntimeFallbackChain(provider, hasKimiKey, hasGLMKey, hasGemi
|
|
|
83
83
|
* Get the maximum number of frames to extract for summarization
|
|
84
84
|
*/
|
|
85
85
|
export function getMaxFrames() {
|
|
86
|
-
const envMaxFrames = parseInt(process.env.VIDEO_MCP_MAX_FRAMES || '
|
|
86
|
+
const envMaxFrames = parseInt(process.env.VIDEO_MCP_MAX_FRAMES || '40', 10);
|
|
87
87
|
return Math.max(5, Math.min(100, envMaxFrames)); // Clamp between 5 and 100
|
|
88
88
|
}
|
|
89
89
|
//# sourceMappingURL=providerRouter.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "video-context-mcp-server",
|
|
3
|
-
"version": "0.
|
|
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",
|