video-context-mcp-server 0.50.5-beta → 0.50.7-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 CHANGED
@@ -48,10 +48,40 @@ npm install -g video-context-mcp-server@latest # update
48
48
  <details open>
49
49
  <summary><strong>VS Code</strong></summary>
50
50
 
51
- Create or update `.vscode/mcp.json` in your workspace:
51
+ You can configure the MCP server globally (for all projects) or at the workspace level.
52
+
53
+ **Global configuration**
54
+
55
+ Open VS Code → Settings → MCP and add the server configuration.
56
+
57
+ **Workspace-level configuration**
58
+
59
+ Create or update `.vscode/mcp.json` in your workspace.
52
60
 
53
61
  > **Important:** This file contains sensitive API keys. **Never commit it to source control.** Ensure it is added to your `.gitignore` file.
54
62
 
63
+ #### Minimal configuration
64
+
65
+ You only need one video API key to get started. The example below uses Gemini, which has a free tier and requires no credit card:
66
+
67
+ ```json
68
+ {
69
+ "servers": {
70
+ "videoMcp": {
71
+ "type": "stdio",
72
+ "command": "video-context-mcp",
73
+ "env": {
74
+ "GEMINI_API_KEY": "your-gemini-key"
75
+ }
76
+ }
77
+ }
78
+ }
79
+ ```
80
+
81
+ #### Full configuration (all providers)
82
+
83
+ Set all keys to enable the full fallback chain. If one provider is unavailable or rate-limited, the server automatically tries the next:
84
+
55
85
  ```json
56
86
  {
57
87
  "servers": {
@@ -80,7 +110,7 @@ Open Copilot Chat — the MCP server starts automatically when tools are needed.
80
110
  <details>
81
111
  <summary><strong>Cursor</strong></summary>
82
112
 
83
- Add to your Cursor MCP configuration (global or project-level):
113
+ You can configure the MCP server globally (for all projects) or at the project level. The configuration format is the same for both:
84
114
 
85
115
  ```json
86
116
  {
@@ -102,6 +132,16 @@ Add to your Cursor MCP configuration (global or project-level):
102
132
  }
103
133
  ```
104
134
 
135
+ **Global configuration**
136
+
137
+ Open Cursor → Settings → MCP and add the server configuration above.
138
+
139
+ **Project-level configuration**
140
+
141
+ Create a `.cursor/mcp.json` (or `.mcp.json`) in your project root with the configuration above.
142
+
143
+ > **Important:** This file contains sensitive API keys. **Never commit it to source control.** Ensure it is added to your `.gitignore` file.
144
+
105
145
  </details>
106
146
 
107
147
  <details>
@@ -553,6 +593,14 @@ vmcp cache clear:all --yes # skip confirmation
553
593
  "YT_DLP_COOKIES_FILE": "/path/to/cookies.txt",
554
594
  "YT_DLP_IMPERSONATE": "chrome",
555
595
  "AWS_S3_BUCKET": "my-video-analysis",
596
+ "AWS_ACCESS_KEY_ID": "AKIA...",
597
+ "AWS_SECRET_ACCESS_KEY": "your-secret-key",
598
+ "AWS_REGION": "us-east-1",
599
+ "AWS_S3_RELAY_CLEANUP": "true",
600
+ "QWEN_BASE_URL": "https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions",
601
+ "QWEN_REQUEST_TIMEOUT_MS": "240000",
602
+ "GLM_REQUEST_TIMEOUT_MS": "240000",
603
+ "MIMO_REQUEST_TIMEOUT_MS": "240000",
556
604
  "VIDEO_MCP_LICENSE_KEY": "your-license-key"
557
605
  }
558
606
  }
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.50.5-beta";
1
+ export declare const VERSION = "0.50.7-beta";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
1
  // Auto-generated by scripts/sync-version.ts — do not edit
2
- export const VERSION = '0.50.5-beta';
2
+ export const VERSION = '0.50.7-beta';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "video-context-mcp-server",
3
- "version": "0.50.5-beta",
3
+ "version": "0.50.7-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",