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 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 (same as the startup sweep)
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.0-beta";
1
+ export declare const VERSION = "0.34.1-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.34.0-beta';
2
+ export const VERSION = '0.34.1-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.34.0-beta",
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",