skills$openclaw/tmdb
dbhurley7.2k

by dbhurley

tmdb – OpenClaw Skill

tmdb is an OpenClaw Skills integration for data analytics workflows. Search movies/TV, get cast, ratings, streaming info, and personalized recommendations via TMDb API.

7.2k stars9.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nametmdb
descriptionSearch movies/TV, get cast, ratings, streaming info, and personalized recommendations via TMDb API. OpenClaw Skills integration.
ownerdbhurley
repositorydbhurley/tmdb
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @dbhurley/tmdb
last updatedFeb 7, 2026

Maintainer

dbhurley

dbhurley

Maintains tmdb in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
tmdb.py
20.0 KB
_meta.json
279 B
SKILL.md
3.2 KB
SKILL.md

name: tmdb description: Search movies/TV, get cast, ratings, streaming info, and personalized recommendations via TMDb API. homepage: https://www.themoviedb.org/ metadata: {"clawdis":{"emoji":"🎬","requires":{"bins":["uv"],"env":["TMDB_API_KEY"]},"primaryEnv":"TMDB_API_KEY"}}

TMDb - The Movie Database

Comprehensive movie and TV information with streaming availability, recommendations, and personalization.

Setup

Set environment variable:

  • TMDB_API_KEY: Your TMDb API key (free at themoviedb.org)

Search

# Search movies
uv run {baseDir}/scripts/tmdb.py search "Inception"

# Search TV shows
uv run {baseDir}/scripts/tmdb.py search "Breaking Bad" --tv

# Search people (actors, directors)
uv run {baseDir}/scripts/tmdb.py person "Christopher Nolan"

Movie/TV Details

# Full movie info
uv run {baseDir}/scripts/tmdb.py movie 27205

# With cast
uv run {baseDir}/scripts/tmdb.py movie 27205 --cast

# TV show details
uv run {baseDir}/scripts/tmdb.py tv 1396

# By name (searches first, then shows details)
uv run {baseDir}/scripts/tmdb.py info "The Dark Knight"

Where to Stream

# Find streaming availability
uv run {baseDir}/scripts/tmdb.py where "Inception"
uv run {baseDir}/scripts/tmdb.py where 27205

# Specify region
uv run {baseDir}/scripts/tmdb.py where "Inception" --region GB

Discovery

# Trending this week
uv run {baseDir}/scripts/tmdb.py trending
uv run {baseDir}/scripts/tmdb.py trending --tv

# Recommendations based on a movie
uv run {baseDir}/scripts/tmdb.py recommend "Inception"

# Advanced discover
uv run {baseDir}/scripts/tmdb.py discover --genre action --year 2024
uv run {baseDir}/scripts/tmdb.py discover --genre sci-fi --rating 7.5

Personalization

# Get personalized suggestions (uses Plex history + preferences)
uv run {baseDir}/scripts/tmdb.py suggest <user_id>

# Set preferences
uv run {baseDir}/scripts/tmdb.py pref <user_id> --genres "sci-fi,thriller,drama"
uv run {baseDir}/scripts/tmdb.py pref <user_id> --directors "Christopher Nolan,Denis Villeneuve"
uv run {baseDir}/scripts/tmdb.py pref <user_id> --avoid "horror,romance"

# View preferences
uv run {baseDir}/scripts/tmdb.py pref <user_id> --show

Watchlist

# Add to watchlist
uv run {baseDir}/scripts/tmdb.py watchlist <user_id> add 27205
uv run {baseDir}/scripts/tmdb.py watchlist <user_id> add "Dune: Part Two"

# View watchlist
uv run {baseDir}/scripts/tmdb.py watchlist <user_id>

# Remove from watchlist
uv run {baseDir}/scripts/tmdb.py watchlist <user_id> rm 27205

Integrations

Plex

If the Plex skill is available, suggest command pulls recent watch history to inform recommendations.

ppl.gift (CRM)

If ppl skill is available, preferences are stored as notes on the user's contact for persistence across sessions.

Genre IDs

Common genres for --genre filter:

  • action (28), adventure (12), animation (16)
  • comedy (35), crime (80), documentary (99)
  • drama (18), family (10751), fantasy (14)
  • horror (27), mystery (9648), romance (10749)
  • sci-fi (878), thriller (53), war (10752)

Notes

  • TMDb API: 40 requests per 10 seconds (free tier)
  • Watch providers vary by region (default: US)
  • Recommendations combine TMDb data + user preferences + watch history
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install tmdb?

Run openclaw add @dbhurley/tmdb in your terminal. This installs tmdb into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/dbhurley/tmdb. Review commits and README documentation before installing.