# Movie Tv

> Search movies and TV shows, get ratings, recommendations using TMDB. Use when: user asks about movies, TV shows, ratings, 'what should I watch', trending shows. Don't use when: user asks about YouTube videos, music, or live TV schedules.

- Skill: `sepivip/movie-tv` (Agent Skill)
- Install (CLI): `npx skillmds@latest add sepivip/movie-tv`
- Raw SKILL.md: https://api.skillmd.com/api/skills/sepivip/movie-tv/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: sepivip (https://skillmd.com/u/sepivip)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/sepivip/movie-tv

---


# Movie & TV

Search for movies and TV shows using The Movie Database (TMDB) API.

## Use when
- Movie info ("Tell me about Dune")
- TV shows ("What's Severance about?")
- Recommendations ("Movies like Inception")
- What's trending

## Don't use when
- YouTube videos or online content
- Music/podcasts/audiobooks
- Live TV schedules or streaming availability

## API Key

TMDB requires a free API key. Check memory for TMDB_API_KEY.
User can get free key at: https://www.themoviedb.org/settings/api

## API Endpoints

### Search movies
```javascript
web_fetch({
  url: "https://api.themoviedb.org/3/search/movie?api_key={KEY}&query=Dune"
})
```

### Get trending
```javascript
web_fetch({
  url: "https://api.themoviedb.org/3/trending/all/day?api_key={KEY}"
})
```

## Response Format

🎬 **Dune: Part Two** (2024)
Rating: 8.3/10
Genre: Science Fiction, Adventure
Synopsis: Follow the mythic journey...

