video-context-mcp-server 0.12.0-beta → 0.13.0-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 -6
- package/dist/services/providerRouter.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -332,7 +332,7 @@ When a provider's API key is missing, the tool automatically falls back to the n
|
|
|
332
332
|
| `MOONSHOT_API_KEY` | Moonshot AI API key for Kimi K2.5 | Optional (required if using Kimi) |
|
|
333
333
|
| `Z_AI_API_KEY` | Z.AI API key for GLM-4.6V | Optional (required if using GLM) |
|
|
334
334
|
| `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:
|
|
335
|
+
| `VIDEO_MCP_MAX_FRAMES` | Max frames for summarization (GLM/Kimi only) | Optional (default: 40; clamped to 5-100) |
|
|
336
336
|
| `DEEPGRAM_API_KEY` | Deepgram API key for `transcribe_video` | Optional (required if using Deepgram) |
|
|
337
337
|
| `ASSEMBLYAI_API_KEY` | AssemblyAI API key for `transcribe_video` | Optional (required if using AssemblyAI) |
|
|
338
338
|
| `GROQ_API_KEY` | Groq API key for Whisper transcription via `transcribe_video` | Optional (required if using Groq) |
|
|
@@ -435,15 +435,16 @@ npm run ltfb
|
|
|
435
435
|
video-mcp/
|
|
436
436
|
├── src/
|
|
437
437
|
│ ├── index.ts # MCP server entry point
|
|
438
|
-
│ ├── tools/ # MCP tool implementations
|
|
439
|
-
│
|
|
440
|
-
│ ├── services/ # Backend clients (Kimi, GLM, Gemini, ffmpeg)
|
|
438
|
+
│ ├── tools/ # MCP tool implementations (6 tools)
|
|
439
|
+
│ ├── services/ # Backend clients (Kimi, GLM, Gemini, ffmpeg, audioRouter)
|
|
441
440
|
│ │ └── audio/ # Audio provider clients (Deepgram, AssemblyAI, Groq)
|
|
442
|
-
│ └── utils/ # Helpers (
|
|
441
|
+
│ └── utils/ # Helpers (tempFiles, base64, videoUtils, downloadCache, audioUtils, logger)
|
|
443
442
|
├── .vscode/
|
|
444
443
|
│ └── mcp.json # VS Code MCP configuration
|
|
445
444
|
├── docs/
|
|
446
|
-
│
|
|
445
|
+
│ ├── features/ # Feature design and progress docs
|
|
446
|
+
│ ├── reviews/ # Codebase review notes
|
|
447
|
+
│ └── plan-and-progress.md # Implementation plan and iteration history
|
|
447
448
|
└── .github/
|
|
448
449
|
└── copilot-instructions.md # Copilot AI assistant guidelines
|
|
449
450
|
```
|
|
@@ -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.0-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",
|