
What2Watch
Provides real-time TV schedules, streaming platform availability, and personalized viewing recommendations. Helps users find what to watch and where to watch it.
Real-time TV schedules, streaming availability, and personalized recommendations
What it does
- Get real-time TV schedules
- Check streaming availability across platforms
- Generate personalized viewing recommendations
- Search for shows and movies
- Track what's currently airing
- Find where content is available to stream
Best for
About What2Watch
What2Watch is a community-built MCP server published by lio1204 that provides AI assistants with tools and capabilities via the Model Context Protocol. What2Watch — real-time TV schedules, streaming availability, and tailored recommendations to help you find what to watch It is categorized under other, developer tools.
How to install
You can install What2Watch in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server supports remote connections over HTTP, so no local installation is required.
License
What2Watch is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
What2Watch MCP
Give Your AI Superpowers for Entertainment Discovery
Stop Getting Generic Recommendations. Start Discovering What's Actually On.
Regular AI assistants search the web and return the same "trending on Netflix" lists from 2023. What2Watch MCP plugs directly into your AI, giving it access to:
- Real-time TV schedules for 1000+ channels (ABC, CBS, NBC, FOX, ESPN, CNN, HBO, AMC...)
- Free streaming (FAST) channels (Pluto TV, Tubi, Freevee, Roku Channel, Peacock Free, Samsung TV+, Xumo)
- All major SVOD services (Netflix, Prime Video, Disney+, Hulu, HBO Max, Apple TV+, Paramount+)
- Truly personalized recommendations based on your mood, taste, and available time
- "Surprise Me" mode to discover hidden gems you'd never find on your own
Real data. Real-time. Really personalized.
Quick Start
Connect via Claude
- Open Claude → Settings → Connectors
- Add Custom Connector:
https://what2watch.live/sse - Authenticate with email magic link
- Ask: "What should I watch tonight?"
Connect via ChatGPT
- Go to chatgpt.com → Settings → Apps & Connectors
- Enable Developer Mode in Advanced Settings
- Create App with URL:
https://what2watch.live/sse - Authenticate and start discovering!
Tools
What2Watch MCP provides 6 powerful tools for entertainment discovery.
get_recommendation
Get personalized movie and TV recommendations based on your preferences.
interface GetRecommendationParams {
// Location & Language
location?: string; // Country code (default: "US")
languages?: string[]; // Preferred languages ["en", "es"]
// User Profile
gender?: string; // User's gender
age_group?: string; // "kids" | "teenager" | "young adult" | "adult" | "senior"
// Platforms
platforms?: string[]; // ["netflix", "prime", "disney_plus", "hulu", "hbo_max", "apple_tv_plus"]
channels?: string[]; // Cable/linear TV channels
// Taste Profile
liked_media?: string[]; // Titles they enjoyed ["Breaking Bad", "The Wire"]
disliked_media?: string[]; // Titles to avoid
watched_media?: string[]; // Already seen (excluded from results)
// Filters
media_type?: string; // "movie" | "series" | "documentary"
genre?: string; // "comedy" | "drama" | "action" | "thriller" | "sci-fi" | "horror" | "romance"
mood?: string; // "relaxing" | "exciting" | "thought-provoking"
watch_time?: string; // "now" | "tonight" | "later"
// Discovery
surprise_me?: boolean; // Discover underrated hidden gems (default: false)
limit?: number; // Max results 1-10 (default: 5)
}
Example queries:
- "What should I watch?"
- "Recommend something like Breaking Bad"
- "I'm in the mood for a relaxing comedy"
- "Surprise me with hidden gems"
search_content
Search for movies and shows by title, actor, director, or keywords.
interface SearchContentParams {
keywords?: string; // Text search (title, actor name, plot keywords)
genres?: string[]; // Filter by multiple genres
min_rating?: number; // Minimum IMDB score 0-10 (e.g., 7.5)
year_from?: number; // Release year start (e.g., 2020)
year_to?: number; // Release year end (e.g., 2024)
location?: string; // Country code (default: "US")
languages?: string[]; // Preferred languages
platforms?: string[]; // Streaming services filter
liked_media?: string[]; // Boosts similar content in ranking
disliked_media?: string[]; // Titles to avoid
watched_media?: string[]; // Already seen (excluded)
media_type?: string; // "movie" | "series" | "episode" | "documentary"
genre?: string; // Single genre filter
mood?: string; // "relaxing" | "exciting" | "thought-provoking"
limit?: number; // Max results 1-10 (default: 5)
}
Example queries:
- "Find Tom Hanks movies"
- "Action movies on Netflix rated above 8"
- "Sci-fi shows from 2020-2024"
- "Search for Dune"
get_content_details
Get full details about a specific movie or TV show.
interface GetContentDetailsParams {
content_id: string; // The ID from search/recommendation results
}
Returns: Full details including plot, cast, crew, ratings, trailers, and streaming availability.
Example queries:
- "Tell me more about Inception"
- "What's The Bear about?"
- "Who stars in Severance?"
- "Where can I watch Oppenheimer?"
get_schedule
Get TV broadcast schedule - what's on live TV right now or later.
interface GetScheduleParams {
time_range?: string; // "now" (next 2h) | "tonight" (6PM-midnight) | "today" | "tomorrow"
channels?: string[]; // Filter by channel ["hbo", "nbc", "espn", "abc", "cbs", "fox"]
location?: string; // Country code (default: "US")
liked_media?: string[]; // Boosts similar content
disliked_media?: string[]; // Titles to avoid (excluded)
watched_media?: string[]; // Already seen (excluded)
media_type?: string; // "movie" | "series" | "sports" | "news" | "documentary"
genre?: string; // "drama" | "comedy" | "sports" | "news"
genres?: string[]; // Multiple genres ["sports", "action"]
min_rating?: number; // Minimum IMDB score 0-10
limit?: number; // Max results 1-10 (default: 5)
}
Example queries:
- "What's on TV tonight?"
- "What's on ESPN right now?"
- "Movies on HBO tonight"
- "Sports on TV tomorrow"
get_trending
See what's popular and trending right now.
interface GetTrendingParams {
location?: string; // Country code (default: "US")
platforms?: string[]; // Filter by streaming service
liked_media?: string[]; // For reference/personalization
disliked_media?: string[]; // Titles to avoid (excluded)
watched_media?: string[]; // Already seen (excluded)
media_type?: string; // "movie" | "series"
genre?: string; // Filter by genre
time_window?: string; // "day" | "week" | "month" (default: all time)
limit?: number; // Max results 1-10 (default: 5)
}
Example queries:
- "What's trending?"
- "What's popular on Netflix?"
- "Top movies this week"
- "What is everyone watching?"
get_available_sources
List all streaming platforms and TV channels supported.
interface GetAvailableSourcesParams {
location?: string; // Country code (default: "US")
include_channels?: boolean; // Include TV channels with schedules (default: true)
include_platforms?: boolean; // Include streaming platforms (default: true)
}
Returns: Platforms grouped by type (subscription, free, rent, purchase) with content counts; TV channels with schedule availability.
Example queries:
- "What platforms do you support?"
- "What streaming services are available?"
- "Which channels have TV schedules?"
Prompts
What2Watch MCP provides 19 pre-built prompts for common entertainment queries.
Discovery Prompts
| Prompt | Parameters | Description |
|---|---|---|
what_to_watch | mood?, platforms?, media_type? | The go-to prompt for "I don't know what to watch" |
surprise_me | genre? | Discover hidden gems and underrated content |
recommend_by_mood | mood (required) | Match your current mood (relaxing, exciting, funny, dark...) |
similar_to | title (required), media_type? | Find content similar to something you loved |
Search Prompts
| Prompt | Parameters | Description |
|---|---|---|
find_title | title (required) | Search for a specific movie or show |
find_by_actor | actor_name (required), media_type? | Find content featuring a specific actor |
find_by_genre | genre (required), platforms? | Find content in a specific genre |
recent_releases | media_type?, genre?, min_rating? | Find recent releases from the last year |
Trending Prompts
| Prompt | Parameters | Description |
|---|---|---|
whats_trending | media_type? | See what's popular right now |
trending_on_platform | platform (required) | What's popular on a specific service |
top_rated | genre?, media_type? | Find the highest-rated content |
TV Schedule Prompts
| Prompt | Parameters | Description |
|---|---|---|
whats_on_tv | time_range? | Check what's on live TV |
whats_on_channel | channel (required), time_range? | Schedule for a specific channel |
Occasion-Based Prompts
| Prompt | Parameters | Description |
|---|---|---|
movie_night | group?, platforms? | Recommendations for movie night (friends, family, date) |
family_friendly | platforms? | Kid-friendly content for the whole family |
date_night | platforms? | Romantic or date-appropriate picks |
weekend_binge | genre?, platforms? | Great series to binge over the weekend |
quick_watch | max_minutes? | Short content when you're limited on time |
Platform Prompts
| Prompt | Parameters | Description |
|---|---|---|
available_platforms | - | List all supported streaming |
README truncated. View full README on GitHub.
Alternatives
Related Skills
Browse all skillsUse when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.
UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Tools, patterns, and utilities for creating music with code. Output as a .mp3 file with realistic instrument sounds. Write custom compositions to bring creativity to life through music. This skill should be used whenever the user asks for music to be created. Never use this skill for replicating songs, beats, riffs, or other sensitive works. The skill is not suitable for vocal/lyrical music, audio mixing/mastering (reverb, EQ, compression), real-time MIDI playback, or professional studio recording quality.
Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".
Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.