video-context-mcp-server 0.23.4-beta → 0.23.6-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 +8 -2
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,6 +49,8 @@ npm install -g video-context-mcp-server@latest # update
|
|
|
49
49
|
|
|
50
50
|
Create or update `.vscode/mcp.json` in your workspace:
|
|
51
51
|
|
|
52
|
+
> **Important:** This file contains sensitive API keys. **Never commit it to source control.** Ensure it is added to your `.gitignore` file.
|
|
53
|
+
|
|
52
54
|
```json
|
|
53
55
|
{
|
|
54
56
|
"servers": {
|
|
@@ -261,9 +263,11 @@ Set `VIDEO_MCP_DEFAULT_PROVIDER=kimi` or `gemini` to change the default.
|
|
|
261
263
|
| ------------------- | ---------------------------- | ------------------------ | ----------------------- | -------------------------- |
|
|
262
264
|
| Price | Paid ($200 free credits) | Paid ($50 free credits) | Free tier available | Free tier available |
|
|
263
265
|
| Speaker diarization | Yes | Yes | No | No |
|
|
264
|
-
| Translation | No
|
|
266
|
+
| Translation | No (silently ignored) | No (silently ignored) | Yes (`translate: true`) | Yes (`translate: true`) |
|
|
265
267
|
| Best for | **Default** (fast, accurate) | High-quality diarization | Free/cost-conscious use | Users already using Gemini |
|
|
266
268
|
|
|
269
|
+
> **Note:** "Translation" here means speech-to-English conversion (output English regardless of the spoken language). It is distinct from multilingual transcription — Deepgram and AssemblyAI both support transcribing dozens of languages natively, but they always output in the source language. Use Groq or Gemini with `translate: true` when you need an English transcript of non-English audio.
|
|
270
|
+
|
|
267
271
|
Set `AUDIO_MCP_DEFAULT_PROVIDER` to change the default.
|
|
268
272
|
|
|
269
273
|
---
|
|
@@ -321,6 +325,8 @@ Set `AUDIO_MCP_DEFAULT_PROVIDER` to change the default.
|
|
|
321
325
|
|
|
322
326
|
A fully annotated `.vscode/mcp.json` showing every available environment variable:
|
|
323
327
|
|
|
328
|
+
> **Warning:** This file contains sensitive API keys. **Never commit it to source control.** Make sure `.vscode/mcp.json` is in your `.gitignore`.
|
|
329
|
+
|
|
324
330
|
```json
|
|
325
331
|
{
|
|
326
332
|
"servers": {
|
|
@@ -449,7 +455,7 @@ npm install
|
|
|
449
455
|
npm run build
|
|
450
456
|
```
|
|
451
457
|
|
|
452
|
-
Use this `.vscode/mcp.json` to run the local build:
|
|
458
|
+
Use this `.vscode/mcp.json` to run the local build (never commit this file):
|
|
453
459
|
|
|
454
460
|
```json
|
|
455
461
|
{
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.23.
|
|
1
|
+
export declare const VERSION = "0.23.6-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.23.
|
|
3
|
+
"version": "0.23.6-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",
|