Skip to content

Commit f477d93

Browse files
committed
fix: use existing bunny-1mb as default video, remove nasa-earth
1 parent 06cfbd6 commit f477d93

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

examples/video-resource-server/server.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ const RESOURCE_URI = "ui://video-player/mcp-app.html";
3131
* Video library with different sizes for testing.
3232
*/
3333
const 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
),

0 commit comments

Comments
 (0)