video-context-mcp-server 0.15.0-beta → 0.15.2-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 -21
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -107,9 +107,9 @@ Create (or update) `.vscode/mcp.json` in your project/workspace:
|
|
|
107
107
|
"type": "stdio",
|
|
108
108
|
"command": "video-context-mcp",
|
|
109
109
|
"env": {
|
|
110
|
-
"GEMINI_API_KEY": "your-gemini-key",
|
|
111
|
-
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
112
110
|
"Z_AI_API_KEY": "your-zai-key",
|
|
111
|
+
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
112
|
+
"GEMINI_API_KEY": "your-gemini-key",
|
|
113
113
|
"DEEPGRAM_API_KEY": "your-deepgram-key",
|
|
114
114
|
"ASSEMBLYAI_API_KEY": "your-assemblyai-key",
|
|
115
115
|
"GROQ_API_KEY": "your-groq-key"
|
|
@@ -131,9 +131,9 @@ Add this server to your Cursor MCP configuration (global or project-level):
|
|
|
131
131
|
"videoMcp": {
|
|
132
132
|
"command": "video-context-mcp",
|
|
133
133
|
"env": {
|
|
134
|
-
"GEMINI_API_KEY": "your-gemini-key",
|
|
135
|
-
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
136
134
|
"Z_AI_API_KEY": "your-zai-key",
|
|
135
|
+
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
136
|
+
"GEMINI_API_KEY": "your-gemini-key",
|
|
137
137
|
"DEEPGRAM_API_KEY": "your-deepgram-key",
|
|
138
138
|
"ASSEMBLYAI_API_KEY": "your-assemblyai-key",
|
|
139
139
|
"GROQ_API_KEY": "your-groq-key"
|
|
@@ -155,9 +155,9 @@ Use the Claude CLI to register the MCP server:
|
|
|
155
155
|
|
|
156
156
|
```bash
|
|
157
157
|
claude mcp add videoMcp video-context-mcp \
|
|
158
|
-
--env GEMINI_API_KEY=your-gemini-key \
|
|
159
|
-
--env MOONSHOT_API_KEY=your-moonshot-key \
|
|
160
158
|
--env Z_AI_API_KEY=your-zai-key \
|
|
159
|
+
--env MOONSHOT_API_KEY=your-moonshot-key \
|
|
160
|
+
--env GEMINI_API_KEY=your-gemini-key \
|
|
161
161
|
--env DEEPGRAM_API_KEY=your-deepgram-key \
|
|
162
162
|
--env ASSEMBLYAI_API_KEY=your-assemblyai-key \
|
|
163
163
|
--env GROQ_API_KEY=your-groq-key
|
|
@@ -173,8 +173,9 @@ If you prefer not to install globally, register via `npx` instead (slower startu
|
|
|
173
173
|
|
|
174
174
|
```bash
|
|
175
175
|
claude mcp add videoMcp npx -y video-context-mcp-server@latest \
|
|
176
|
-
--env MOONSHOT_API_KEY=your-moonshot-key \
|
|
177
176
|
--env Z_AI_API_KEY=your-zai-key \
|
|
177
|
+
--env MOONSHOT_API_KEY=your-moonshot-key \
|
|
178
|
+
--env GEMINI_API_KEY=your-gemini-key \
|
|
178
179
|
--env DEEPGRAM_API_KEY=your-deepgram-key \
|
|
179
180
|
--env ASSEMBLYAI_API_KEY=your-assemblyai-key \
|
|
180
181
|
--env GROQ_API_KEY=your-groq-key
|
|
@@ -211,9 +212,9 @@ If you prefer not to install globally, you can use `npx` instead. Note this adds
|
|
|
211
212
|
"command": "npx",
|
|
212
213
|
"args": ["-y", "video-context-mcp-server@latest"],
|
|
213
214
|
"env": {
|
|
214
|
-
"GEMINI_API_KEY": "your-gemini-key",
|
|
215
|
-
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
216
215
|
"Z_AI_API_KEY": "your-zai-key",
|
|
216
|
+
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
217
|
+
"GEMINI_API_KEY": "your-gemini-key",
|
|
217
218
|
"DEEPGRAM_API_KEY": "your-deepgram-key",
|
|
218
219
|
"ASSEMBLYAI_API_KEY": "your-assemblyai-key",
|
|
219
220
|
"GROQ_API_KEY": "your-groq-key"
|
|
@@ -244,9 +245,9 @@ Then use this `.vscode/mcp.json` server command:
|
|
|
244
245
|
"command": "node",
|
|
245
246
|
"args": ["${workspaceFolder}/dist/index.js"],
|
|
246
247
|
"env": {
|
|
247
|
-
"GEMINI_API_KEY": "your-gemini-key",
|
|
248
|
-
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
249
248
|
"Z_AI_API_KEY": "your-zai-key",
|
|
249
|
+
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
250
|
+
"GEMINI_API_KEY": "your-gemini-key",
|
|
250
251
|
"DEEPGRAM_API_KEY": "your-deepgram-key",
|
|
251
252
|
"ASSEMBLYAI_API_KEY": "your-assemblyai-key",
|
|
252
253
|
"GROQ_API_KEY": "your-groq-key"
|
|
@@ -268,9 +269,9 @@ When your `.vscode/mcp.json` includes a `dev` block such as:
|
|
|
268
269
|
"command": "node",
|
|
269
270
|
"args": ["${workspaceFolder}/dist/index.js"],
|
|
270
271
|
"env": {
|
|
271
|
-
"GEMINI_API_KEY": "your-gemini-key",
|
|
272
|
-
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
273
272
|
"Z_AI_API_KEY": "your-zai-key",
|
|
273
|
+
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
274
|
+
"GEMINI_API_KEY": "your-gemini-key",
|
|
274
275
|
"DEEPGRAM_API_KEY": "your-deepgram-key",
|
|
275
276
|
"ASSEMBLYAI_API_KEY": "your-assemblyai-key",
|
|
276
277
|
"GROQ_API_KEY": "your-groq-key",
|
|
@@ -311,7 +312,7 @@ If you want less noise, remove either:
|
|
|
311
312
|
### Path and Provider Constraints
|
|
312
313
|
|
|
313
314
|
- **All 6 tools** support both local files and remote `http(s)` URLs. Remote videos are automatically downloaded to a temporary file before processing.
|
|
314
|
-
- For remote `http(s)` URLs with AI-powered video tools (`analyze_video`, `summarize_video`, `search_timestamp`): all three providers (`provider=
|
|
315
|
+
- For remote `http(s)` URLs with AI-powered video tools (`analyze_video`, `summarize_video`, `search_timestamp`): all three providers (`provider=glm`, `provider=kimi`, `provider=gemini`) are supported. Remote videos are downloaded to a temp file before upload.
|
|
315
316
|
- For `transcribe_video`, all four audio providers (Deepgram, AssemblyAI, Groq, Gemini) support both local files and remote URLs.
|
|
316
317
|
- For local inputs, all tools accept normal filesystem paths or `file://` URIs (automatically normalized).
|
|
317
318
|
|
|
@@ -349,10 +350,6 @@ Ask Copilot Chat:
|
|
|
349
350
|
|
|
350
351
|
> "Transcribe this Spanish video and translate it to English: `./video.mp4`"
|
|
351
352
|
|
|
352
|
-
## Additional Guides
|
|
353
|
-
|
|
354
|
-
- [Screen Recording for Small File Sizes (Windows)](docs/screen-recording-small-files.md)
|
|
355
|
-
|
|
356
353
|
## Backend Comparison
|
|
357
354
|
|
|
358
355
|
| Feature | Gemini 3 Flash Preview | GLM-4.6V | Kimi K2.5 |
|
|
@@ -372,9 +369,9 @@ When a provider's API key is missing, the tool automatically falls back to the n
|
|
|
372
369
|
|
|
373
370
|
| Variable | Description | Required |
|
|
374
371
|
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- |
|
|
375
|
-
| `GEMINI_API_KEY` | Google API key for Gemini 3 Flash Preview | Optional (required if using Gemini) |
|
|
376
|
-
| `MOONSHOT_API_KEY` | Moonshot AI API key for Kimi K2.5 | Optional (required if using Kimi) |
|
|
377
372
|
| `Z_AI_API_KEY` | Z.AI API key for GLM-4.6V | Optional (required if using GLM) |
|
|
373
|
+
| `MOONSHOT_API_KEY` | Moonshot AI API key for Kimi K2.5 | Optional (required if using Kimi) |
|
|
374
|
+
| `GEMINI_API_KEY` | Google API key for Gemini 3 Flash Preview | Optional (required if using Gemini) |
|
|
378
375
|
| `VIDEO_MCP_DEFAULT_PROVIDER` | Default video backend (`gemini`, `glm`, `kimi`) | Optional (default: `glm`) |
|
|
379
376
|
| `VIDEO_MCP_MAX_FRAMES` | Max frames for summarization (GLM/Kimi only). Free users capped at 40; premium users can set up to 100. | Optional (default: 40; clamped to 5-100) |
|
|
380
377
|
| `DEEPGRAM_API_KEY` | Deepgram API key for `transcribe_video` | Optional (required if using Deepgram) |
|
|
@@ -416,9 +413,9 @@ When a provider's API key is missing, the tool automatically falls back to the n
|
|
|
416
413
|
"type": "stdio",
|
|
417
414
|
"command": "video-context-mcp",
|
|
418
415
|
"env": {
|
|
419
|
-
"GEMINI_API_KEY": "your-gemini-key",
|
|
420
416
|
"Z_AI_API_KEY": "your-zai-key",
|
|
421
417
|
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
418
|
+
"GEMINI_API_KEY": "your-gemini-key",
|
|
422
419
|
"DEEPGRAM_API_KEY": "your-deepgram-key",
|
|
423
420
|
"ASSEMBLYAI_API_KEY": "your-assemblyai-key",
|
|
424
421
|
"GROQ_API_KEY": "your-groq-key",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "video-context-mcp-server",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.2-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",
|