File tree Expand file tree Collapse file tree
examples/video-resource-server Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,10 +31,6 @@ const RESOURCE_URI = "ui://video-player/mcp-app.html";
3131 * Video library with different sizes for testing.
3232 */
3333const VIDEO_LIBRARY : Record < string , { url : string ; description : string } > = {
34- "nasa-earth" : {
35- url : "https://archive.org/download/NASA-Ultra-High-Definition/4K-Crew-Earth-Observations_DEC-2015.mp4" ,
36- description : "NASA Earth observations from ISS (6.4MB, public domain)" ,
37- } ,
3834 "bunny-1mb" : {
3935 url : "https://test-videos.co.uk/vids/bigbuckbunny/mp4/h264/360/Big_Buck_Bunny_360_10s_1MB.mp4" ,
4036 description : "1MB" ,
@@ -128,7 +124,7 @@ ${Object.entries(VIDEO_LIBRARY)
128124 inputSchema : {
129125 videoId : z
130126 . enum ( Object . keys ( VIDEO_LIBRARY ) as [ string , ...string [ ] ] )
131- . default ( "nasa-earth " )
127+ . default ( "bunny-1mb " )
132128 . describe (
133129 `Video ID to play. Available: ${ Object . keys ( VIDEO_LIBRARY ) . join ( ", " ) } ` ,
134130 ) ,
You can’t perform that action at this time.
0 commit comments