video-context-mcp-server 0.34.0-beta → 0.34.1-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 +5 -1
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -350,9 +350,13 @@ video-context-mcp cache copy --dest=../sibling/cache
|
|
|
350
350
|
video-context-mcp cache copy --dest="/Users/alice/My Projects/cache-backup"
|
|
351
351
|
video-context-mcp cache copy --dest="C:\Users\alice\My Documents\cache-backup"
|
|
352
352
|
|
|
353
|
-
# Remove only entries older than the TTL (
|
|
353
|
+
# Remove only entries older than the TTL (defaults to 30 min if not set)
|
|
354
354
|
video-context-mcp cache clear:expired
|
|
355
355
|
|
|
356
|
+
# If you've set a custom TTL in mcp.json, pass it explicitly — CLI commands
|
|
357
|
+
# run as a separate process and don't inherit env vars from mcp.json
|
|
358
|
+
VIDEO_MCP_CACHE_TTL_MINUTES=10 video-context-mcp cache clear:expired
|
|
359
|
+
|
|
356
360
|
# Delete ALL cache entries — prompts for confirmation
|
|
357
361
|
video-context-mcp cache clear:all
|
|
358
362
|
video-context-mcp cache clear:all --yes # skip confirmation
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.34.
|
|
1
|
+
export declare const VERSION = "0.34.1-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.34.
|
|
3
|
+
"version": "0.34.1-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",
|