video-context-mcp-server 0.50.5-beta → 0.50.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 +42 -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
|
@@ -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
|
-
|
|
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
|
-
|
|
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>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.50.
|
|
1
|
+
export declare const VERSION = "0.50.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.50.
|
|
3
|
+
"version": "0.50.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",
|