video-context-mcp-server 1.0.1 → 1.0.3
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 +6 -6
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/dist/services/kimiClient.d.ts.map +1 -1
- package/dist/services/kimiClient.js +12 -4
- package/dist/services/kimiClient.js.map +1 -1
- package/dist/services/providerRouter.js +1 -1
- package/dist/tools/schemas.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ An MCP server that gives coding assistants (GitHub Copilot, Cursor, Claude Code)
|
|
|
15
15
|
- 🎙️ **Audio Transcription** — Transcribe speech with paragraph-level timestamps (`[MM:SS]`) or export as SRT/VTT subtitles and JSON using Deepgram, AssemblyAI, Groq/Whisper, or Gemini
|
|
16
16
|
- 🔊 **Speaker Diarization** — Identify who said what (Deepgram and AssemblyAI)
|
|
17
17
|
- 🔊 **Audio-Enhanced Analysis** — Auto-transcribes audio and injects transcripts into AI prompts for richer results (GLM/Kimi/Qwen)
|
|
18
|
-
- 🔄 **Multi-Provider Support** — Choose between GLM-4.6V, Qwen3.6, Kimi K2.
|
|
18
|
+
- 🔄 **Multi-Provider Support** — Choose between GLM-4.6V, Qwen3.6, Kimi K2.6, Gemini, or MiMo-V2 Omni
|
|
19
19
|
- 🎯 **Smart Video Handling** — Extracts keyframes from long videos to reduce token usage
|
|
20
20
|
- ⭐ **Pro tier** — Extended frame extraction, multi-platform downloads, higher resolution. [Learn more ↓](#pro)
|
|
21
21
|
|
|
@@ -304,7 +304,7 @@ Set all keys to get the full fallback chain. The server will try Gemini first, t
|
|
|
304
304
|
| **Gemini 3 Flash Preview** (default, free-tier) | `GEMINI_API_KEY` | [Get key](https://aistudio.google.com/app/apikey) |
|
|
305
305
|
| **GLM-4.6V** (free-tier) | `Z_AI_API_KEY` | [Get key](https://z.ai/manage-apikey/apikey-list) |
|
|
306
306
|
| **Qwen3.6** (FREE — promotional) | `DASHSCOPE_API_KEY` | [Get key](https://modelstudio.console.alibabacloud.com/ap-southeast-1?tab=dashboard#/api-key) |
|
|
307
|
-
| **Kimi K2.
|
|
307
|
+
| **Kimi K2.6** (paid) | `MOONSHOT_API_KEY` | [Get key](https://platform.kimi.ai) |
|
|
308
308
|
| **MiMo-V2 Omni** (paid) | `MIMO_API_KEY` | [Get key](https://platform.xiaomimimo.com/#/console/api-keys) |
|
|
309
309
|
|
|
310
310
|
When a provider's API key is missing or its API call fails at runtime, tools automatically fall back through the remaining providers in priority order, starting from the configured default:
|
|
@@ -334,7 +334,7 @@ When an audio key is missing or an audio API call fails at runtime, tools automa
|
|
|
334
334
|
|
|
335
335
|
### Video Providers
|
|
336
336
|
|
|
337
|
-
| Feature | Gemini 3 Flash Preview (default) | GLM-4.6V | Qwen3.6 | Kimi K2.
|
|
337
|
+
| Feature | Gemini 3 Flash Preview (default) | GLM-4.6V | Qwen3.6 | Kimi K2.6 | MiMo-V2 Omni |
|
|
338
338
|
| -------------- | ---------------------------------------------- | ------------------------------------------------------ | ------------------------------------------------------ | ---------------------------------------------- | ------------------------------------------------------ |
|
|
339
339
|
| Price | Free tier available | Free tier available (GLM-4.6V-Flash) | **FREE** (promotional launch period) | $0.60 input / $3.00 output per 1M tokens | $0.40 input / $2.00 output per 1M tokens |
|
|
340
340
|
| 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 |
|
|
@@ -342,7 +342,7 @@ When an audio key is missing or an audio API call fails at runtime, tools automa
|
|
|
342
342
|
| 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↓** |
|
|
343
343
|
| Best for | **Default** — free, no card required | Free, no card required | **FREE during promo** — SOTA agentic coding | Paid — broadest format support | Paid — thinking mode; multimodal |
|
|
344
344
|
|
|
345
|
-
**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 currently **FREE** during its promotional launch period (released April 2, 2026) — standard pricing will be $0.50 input / $3.00 output per 1M tokens. **Kimi K2.
|
|
345
|
+
**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 currently **FREE** during its promotional launch period (released April 2, 2026) — standard pricing will be $0.50 input / $3.00 output per 1M tokens. **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).
|
|
346
346
|
|
|
347
347
|
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.
|
|
348
348
|
|
|
@@ -578,7 +578,7 @@ Set `AUDIO_MCP_DEFAULT_PROVIDER` to change the default.
|
|
|
578
578
|
| ---------------------------- | --------------------------------------------------------------------------------------------------------------------- | -------- |
|
|
579
579
|
| `Z_AI_API_KEY` | Z.AI API key for GLM-4.6V | — |
|
|
580
580
|
| `DASHSCOPE_API_KEY` | Alibaba Cloud API key for Qwen3.6 | — |
|
|
581
|
-
| `MOONSHOT_API_KEY` | Moonshot AI API key for Kimi K2.
|
|
581
|
+
| `MOONSHOT_API_KEY` | Moonshot AI API key for Kimi K2.6 | — |
|
|
582
582
|
| `GEMINI_API_KEY` | Google API key for Gemini | — |
|
|
583
583
|
| `MIMO_API_KEY` | Xiaomi MiMo API key for MiMo-V2 Omni | — |
|
|
584
584
|
| `VIDEO_MCP_DEFAULT_PROVIDER` | Default video provider used when a tool call does not pass `provider`; a per-call `provider` argument can override it | `gemini` |
|
|
@@ -928,7 +928,7 @@ Proprietary — All Rights Reserved. No part of this software may be copied, mod
|
|
|
928
928
|
## Credits
|
|
929
929
|
|
|
930
930
|
- [MCP SDK](https://github.com/modelcontextprotocol/typescript-sdk) by Anthropic
|
|
931
|
-
- [Kimi K2.
|
|
931
|
+
- [Kimi K2.6](https://github.com/MoonshotAI/Kimi-K2.6) by Moonshot AI
|
|
932
932
|
- [GLM-4.6V](https://docs.z.ai/guides/vlm/glm-4.6v) by Z.AI
|
|
933
933
|
- [Qwen3.6](https://bailian.console.alibabacloud.com/ap-southeast-1/) by Alibaba Cloud
|
|
934
934
|
- [MiMo-V2 Omni](https://platform.xiaomimimo.com/) by Xiaomi
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.0.
|
|
1
|
+
export declare const VERSION = "1.0.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kimiClient.d.ts","sourceRoot":"","sources":["../../src/services/kimiClient.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"kimiClient.d.ts","sourceRoot":"","sources":["../../src/services/kimiClient.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAcnD,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAED,qBAAa,UAAU;IACrB,OAAO,CAAC,MAAM,CAAQ;gBAEV,OAAO,EAAE,iBAAiB;IAOtC;;;;OAIG;IACG,WAAW,CACf,IAAI,EAAE,UAAU,GACf,OAAO,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;IAc3D;;;;;OAKG;IACG,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IA2BrE;;OAEG;IACG,wBAAwB,CAC5B,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC;QACT,SAAS,EAAE,MAAM,CAAA;QACjB,MAAM,EAAE,MAAM,CAAA;KACf,CAAC;IAyCF;;OAEG;IACG,aAAa,CACjB,MAAM,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,CAAC,EACjD,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,MAAM,CAAC;IA+BlB,OAAO,CAAC,6BAA6B;CA6BtC;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,UAAU,GAAG,IAAI,CAMpD"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import OpenAI from 'openai';
|
|
2
2
|
/**
|
|
3
|
-
* Kimi K2.
|
|
3
|
+
* Kimi K2.6 Client
|
|
4
4
|
* Handles video upload and analysis using Moonshot AI's API
|
|
5
5
|
*/
|
|
6
6
|
const KIMI_BASE_URL = 'https://api.moonshot.ai/v1';
|
|
7
|
+
const KIMI_MODEL = 'kimi-k2.6';
|
|
8
|
+
/** Thinking config objects — K2.6 enables thinking by default; be explicit. */
|
|
9
|
+
const THINKING_DISABLED = { type: 'disabled' };
|
|
10
|
+
const THINKING_ENABLED = { type: 'enabled' };
|
|
7
11
|
export class KimiClient {
|
|
8
12
|
client;
|
|
9
13
|
constructor(options) {
|
|
@@ -37,7 +41,8 @@ export class KimiClient {
|
|
|
37
41
|
*/
|
|
38
42
|
async analyzeVideo(fileId, question) {
|
|
39
43
|
const response = await this.client.chat.completions.create({
|
|
40
|
-
model:
|
|
44
|
+
model: KIMI_MODEL,
|
|
45
|
+
thinking: THINKING_DISABLED,
|
|
41
46
|
messages: [
|
|
42
47
|
{
|
|
43
48
|
role: 'user',
|
|
@@ -62,7 +67,8 @@ export class KimiClient {
|
|
|
62
67
|
*/
|
|
63
68
|
async analyzeVideoWithThinking(fileId, question) {
|
|
64
69
|
const response = await this.client.chat.completions.create({
|
|
65
|
-
model:
|
|
70
|
+
model: KIMI_MODEL,
|
|
71
|
+
thinking: THINKING_ENABLED,
|
|
66
72
|
messages: [
|
|
67
73
|
{
|
|
68
74
|
role: 'user',
|
|
@@ -101,7 +107,9 @@ export class KimiClient {
|
|
|
101
107
|
},
|
|
102
108
|
}));
|
|
103
109
|
const response = await this.client.chat.completions.create({
|
|
104
|
-
model:
|
|
110
|
+
model: KIMI_MODEL,
|
|
111
|
+
// @ts-expect-error Moonshot extends ChatCompletionCreateParams with 'thinking'; not in OpenAI SDK types for image-only calls
|
|
112
|
+
thinking: THINKING_DISABLED,
|
|
105
113
|
messages: [
|
|
106
114
|
{
|
|
107
115
|
role: 'user',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kimiClient.js","sourceRoot":"","sources":["../../src/services/kimiClient.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,QAAQ,CAAA;AAG3B;;;GAGG;AAEH,MAAM,aAAa,GAAG,4BAA4B,CAAA;
|
|
1
|
+
{"version":3,"file":"kimiClient.js","sourceRoot":"","sources":["../../src/services/kimiClient.ts"],"names":[],"mappings":"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"}
|
package/dist/tools/schemas.js
CHANGED
|
@@ -24,13 +24,13 @@ export const analyzeVideoSchema = z.object({
|
|
|
24
24
|
question: z.string().describe('Question to ask about the video content'),
|
|
25
25
|
provider: videoProviderEnum
|
|
26
26
|
.optional()
|
|
27
|
-
.describe("AI backend to use: 'gemini' (Gemini 3 Flash Preview, default), 'glm' (GLM-4.6V), 'qwen' (Qwen3.6), 'kimi' (Kimi K2.
|
|
27
|
+
.describe("AI backend to use: 'gemini' (Gemini 3 Flash Preview, default), 'glm' (GLM-4.6V), 'qwen' (Qwen3.6), 'kimi' (Kimi K2.6), or 'mimo' (MiMo-V2 Omni)"),
|
|
28
28
|
});
|
|
29
29
|
export const summarizeVideoSchema = z.object({
|
|
30
30
|
videoPath: z.string().describe('Path to the video file (local path or URL)'),
|
|
31
31
|
provider: videoProviderEnum
|
|
32
32
|
.optional()
|
|
33
|
-
.describe("AI backend to use: 'gemini' (Gemini 3 Flash Preview, default), 'glm' (GLM-4.6V), 'qwen' (Qwen3.6), 'kimi' (Kimi K2.
|
|
33
|
+
.describe("AI backend to use: 'gemini' (Gemini 3 Flash Preview, default), 'glm' (GLM-4.6V), 'qwen' (Qwen3.6), 'kimi' (Kimi K2.6), or 'mimo' (MiMo-V2 Omni)"),
|
|
34
34
|
});
|
|
35
35
|
export const extractFramesSchema = z.object({
|
|
36
36
|
videoPath: z
|
|
@@ -84,7 +84,7 @@ export const searchTimestampSchema = z.object({
|
|
|
84
84
|
.describe("What to search for, e.g., 'person waves', 'dog runs', 'car crash'"),
|
|
85
85
|
provider: videoProviderEnum
|
|
86
86
|
.optional()
|
|
87
|
-
.describe("AI backend to use: 'gemini' (Gemini 3 Flash Preview, default), 'glm' (GLM-4.6V), 'qwen' (Qwen3.6), 'kimi' (Kimi K2.
|
|
87
|
+
.describe("AI backend to use: 'gemini' (Gemini 3 Flash Preview, default), 'glm' (GLM-4.6V), 'qwen' (Qwen3.6), 'kimi' (Kimi K2.6), or 'mimo' (MiMo-V2 Omni)"),
|
|
88
88
|
});
|
|
89
89
|
export const getVideoInfoSchema = z.object({
|
|
90
90
|
videoPath: z
|
package/package.json
CHANGED