video-context-mcp-server 0.23.3-beta → 0.23.5-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 +4 -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
|
@@ -14,7 +14,7 @@ An MCP server that gives coding assistants (GitHub Copilot, Cursor, Claude Code)
|
|
|
14
14
|
- 🎙️ **Audio Transcription** — Transcribe speech using Deepgram, AssemblyAI, Groq/Whisper, or Gemini
|
|
15
15
|
- 🔊 **Speaker Diarization** — Identify who said what (Deepgram and AssemblyAI)
|
|
16
16
|
- 🔊 **Audio-Enhanced Analysis** — Auto-transcribes audio and injects transcripts into AI prompts for richer results (GLM/Kimi only)
|
|
17
|
-
- 🔄 **Multi-Backend Support** — Choose between GLM-4.6V, Kimi K2.5, or Gemini
|
|
17
|
+
- 🔄 **Multi-Backend Support** — Choose between GLM-4.6V, Kimi K2.5, or Gemini
|
|
18
18
|
- 🎯 **Smart Video Handling** — Extracts keyframes from long videos to reduce token usage
|
|
19
19
|
- ⭐ **Pro tier** — Extended frame extraction, multi-platform downloads, higher resolution. [Learn more ↓](#pro)
|
|
20
20
|
|
|
@@ -261,9 +261,11 @@ Set `VIDEO_MCP_DEFAULT_PROVIDER=kimi` or `gemini` to change the default.
|
|
|
261
261
|
| ------------------- | ---------------------------- | ------------------------ | ----------------------- | -------------------------- |
|
|
262
262
|
| Price | Paid ($200 free credits) | Paid ($50 free credits) | Free tier available | Free tier available |
|
|
263
263
|
| Speaker diarization | Yes | Yes | No | No |
|
|
264
|
-
| Translation | No
|
|
264
|
+
| Translation | No (silently ignored) | No (silently ignored) | Yes (`translate: true`) | Yes (`translate: true`) |
|
|
265
265
|
| Best for | **Default** (fast, accurate) | High-quality diarization | Free/cost-conscious use | Users already using Gemini |
|
|
266
266
|
|
|
267
|
+
> **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.
|
|
268
|
+
|
|
267
269
|
Set `AUDIO_MCP_DEFAULT_PROVIDER` to change the default.
|
|
268
270
|
|
|
269
271
|
---
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.23.
|
|
1
|
+
export declare const VERSION = "0.23.5-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.5-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",
|