video-context-mcp-server 1.2.0 → 1.2.1
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 +89 -4
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -199,6 +199,91 @@ Create `.mcp.json` in your project root:
|
|
|
199
199
|
|
|
200
200
|
</details>
|
|
201
201
|
|
|
202
|
+
<details>
|
|
203
|
+
<summary><strong>Google Antigravity</strong></summary>
|
|
204
|
+
|
|
205
|
+
Antigravity stores its MCP configuration at `~/.gemini/antigravity/mcp_config.json`.
|
|
206
|
+
|
|
207
|
+
**Option A — MCP Store UI**
|
|
208
|
+
|
|
209
|
+
1. Click the `...` dropdown at the top of the Antigravity agent panel and open the **MCP Store**.
|
|
210
|
+
2. Click **Manage MCP Servers** → **View raw config**.
|
|
211
|
+
3. Add the following entry to your `mcpServers` object:
|
|
212
|
+
|
|
213
|
+
**Option B — Direct Edit**
|
|
214
|
+
|
|
215
|
+
Open `~/.gemini/antigravity/mcp_config.json` and add `videoMcp`:
|
|
216
|
+
|
|
217
|
+
```json
|
|
218
|
+
{
|
|
219
|
+
"mcpServers": {
|
|
220
|
+
"videoMcp": {
|
|
221
|
+
"command": "video-context-mcp",
|
|
222
|
+
"env": {
|
|
223
|
+
"GEMINI_API_KEY": "your-gemini-key",
|
|
224
|
+
"Z_AI_API_KEY": "your-zai-key",
|
|
225
|
+
"DASHSCOPE_API_KEY": "your-dashscope-key",
|
|
226
|
+
"MOONSHOT_API_KEY": "your-moonshot-key",
|
|
227
|
+
"MIMO_API_KEY": "your-mimo-key",
|
|
228
|
+
"DEEPGRAM_API_KEY": "your-deepgram-key",
|
|
229
|
+
"ASSEMBLYAI_API_KEY": "your-assemblyai-key",
|
|
230
|
+
"GROQ_API_KEY": "your-groq-key",
|
|
231
|
+
"MINIMAX_API_KEY": "your-minimax-key"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
</details>
|
|
239
|
+
|
|
240
|
+
<details>
|
|
241
|
+
<summary><strong>OpenAI Codex</strong></summary>
|
|
242
|
+
|
|
243
|
+
Codex stores MCP configuration in `~/.codex/config.toml` (global) or `.codex/config.toml` in a trusted project root.
|
|
244
|
+
|
|
245
|
+
**Option A — CLI**
|
|
246
|
+
|
|
247
|
+
```bash
|
|
248
|
+
codex mcp add videoMcp \
|
|
249
|
+
--env GEMINI_API_KEY=your-gemini-key \
|
|
250
|
+
--env Z_AI_API_KEY=your-zai-key \
|
|
251
|
+
--env DASHSCOPE_API_KEY=your-dashscope-key \
|
|
252
|
+
--env MOONSHOT_API_KEY=your-moonshot-key \
|
|
253
|
+
--env MIMO_API_KEY=your-mimo-key \
|
|
254
|
+
--env DEEPGRAM_API_KEY=your-deepgram-key \
|
|
255
|
+
--env ASSEMBLYAI_API_KEY=your-assemblyai-key \
|
|
256
|
+
--env GROQ_API_KEY=your-groq-key \
|
|
257
|
+
--env MINIMAX_API_KEY=your-minimax-key \
|
|
258
|
+
-- video-context-mcp
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
Verify with `codex mcp --help` or type `/mcp` inside the Codex TUI.
|
|
262
|
+
|
|
263
|
+
**Option B — `config.toml`**
|
|
264
|
+
|
|
265
|
+
Add the following to `~/.codex/config.toml` (or a project-scoped `.codex/config.toml`):
|
|
266
|
+
|
|
267
|
+
```toml
|
|
268
|
+
[mcp_servers.videoMcp]
|
|
269
|
+
command = "video-context-mcp"
|
|
270
|
+
|
|
271
|
+
[mcp_servers.videoMcp.env]
|
|
272
|
+
GEMINI_API_KEY = "your-gemini-key"
|
|
273
|
+
Z_AI_API_KEY = "your-zai-key"
|
|
274
|
+
DASHSCOPE_API_KEY = "your-dashscope-key"
|
|
275
|
+
MOONSHOT_API_KEY = "your-moonshot-key"
|
|
276
|
+
MIMO_API_KEY = "your-mimo-key"
|
|
277
|
+
DEEPGRAM_API_KEY = "your-deepgram-key"
|
|
278
|
+
ASSEMBLYAI_API_KEY = "your-assemblyai-key"
|
|
279
|
+
GROQ_API_KEY = "your-groq-key"
|
|
280
|
+
MINIMAX_API_KEY = "your-minimax-key"
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
> **Important:** This file contains sensitive API keys. **Never commit it to source control.** Ensure it is added to your `.gitignore` file.
|
|
284
|
+
|
|
285
|
+
</details>
|
|
286
|
+
|
|
202
287
|
<details>
|
|
203
288
|
<summary><strong>Run via npx (no global install)</strong></summary>
|
|
204
289
|
|
|
@@ -332,7 +417,7 @@ Set all keys to get the full fallback chain. The server will try Gemini first, t
|
|
|
332
417
|
| ----------------------------------------------- | ------------------- | --------------------------------------------------------------------------------------------- |
|
|
333
418
|
| **Gemini 3 Flash Preview** (default, free-tier) | `GEMINI_API_KEY` | [Get key](https://aistudio.google.com/app/apikey) |
|
|
334
419
|
| **GLM-4.6V** (free-tier) | `Z_AI_API_KEY` | [Get key](https://z.ai/manage-apikey/apikey-list) |
|
|
335
|
-
| **Qwen3.6** (
|
|
420
|
+
| **Qwen3.6** (paid) | `DASHSCOPE_API_KEY` | [Get key](https://modelstudio.console.alibabacloud.com/ap-southeast-1?tab=dashboard#/api-key) |
|
|
336
421
|
| **Kimi K2.6** (paid) | `MOONSHOT_API_KEY` | [Get key](https://platform.kimi.ai) |
|
|
337
422
|
| **MiMo-V2 Omni** (paid) | `MIMO_API_KEY` | [Get key](https://platform.xiaomimimo.com/#/console/api-keys) |
|
|
338
423
|
|
|
@@ -365,13 +450,13 @@ When an audio key is missing or an audio API call fails at runtime, tools automa
|
|
|
365
450
|
|
|
366
451
|
| Feature | Gemini 3 Flash Preview (default) | GLM-4.6V | Qwen3.6 | Kimi K2.6 | MiMo-V2 Omni |
|
|
367
452
|
| -------------- | ---------------------------------------------- | ------------------------------------------------------ | ------------------------------------------------------ | ---------------------------------------------- | ------------------------------------------------------ |
|
|
368
|
-
| Price | Free tier available | Free tier available (GLM-4.6V-Flash) |
|
|
453
|
+
| Price | Free tier available | Free tier available (GLM-4.6V-Flash) | $0.50 input / $3.00 output per 1M tokens | $0.60 input / $3.00 output per 1M tokens | $0.40 input / $2.00 output per 1M tokens |
|
|
369
454
|
| Video formats | mp4, mpeg, mov, avi, flv, mpg, webm, wmv, 3gpp | mp4, avi, mov, wmv, webm, m4v | mp4, avi, mov, wmv, webm, m4v | mp4, mpeg, mov, avi, flv, mpg, webm, wmv, 3gpp | mp4, mov, avi, wmv |
|
|
370
455
|
| Context window | 1M tokens | 128K tokens | 1M tokens | 256K tokens | 256K tokens |
|
|
371
456
|
| Max file size | 2 GB | ~12 MB base64 / frames fallback / **unlimited w/ S3↓** | ~10 MB base64 / frames fallback / **unlimited w/ S3↓** | 100 MB | ~10 MB base64 / frames fallback / **unlimited w/ S3↓** |
|
|
372
|
-
| Best for | **Default** — free, no card required | Free, no card required |
|
|
457
|
+
| Best for | **Default** — free, no card required | Free, no card required | SOTA agentic coding | Paid — broadest format support | Paid — thinking mode; multimodal |
|
|
373
458
|
|
|
374
|
-
**Gemini 3 Flash Preview** is the default — it offers a free tier with no credit card required, 1M context window, and 2 GB file support. **GLM-4.6V** is the second fallback — also free with no card required. **Qwen3.6** is
|
|
459
|
+
**Gemini 3 Flash Preview** is the default — it offers a free tier with no credit card required, 1M context window, and 2 GB file support. **GLM-4.6V** is the second fallback — also free with no card required. **Qwen3.6** is a paid provider at $0.50 input / $3.00 output per 1M tokens with SOTA agentic coding performance. **Kimi K2.6** is a paid provider with the broadest video format support. **MiMo-V2 Omni** is Xiaomi's multimodal model with thinking mode support ($0.40 input / $2.00 output per 1M tokens).
|
|
375
460
|
|
|
376
461
|
Set `VIDEO_MCP_DEFAULT_PROVIDER=gemini`, `glm`, `qwen`, `kimi`, or `mimo` to change the default provider used when a tool call does not pass `provider`. If a tool call includes `provider`, that per-call value takes precedence.
|
|
377
462
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.2.
|
|
1
|
+
export declare const VERSION = "1.2.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED