npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

entertainment-mcp

v0.0.2

Published

This MCP fetches information about Movies/TvShows from TMDB and OMDB

Readme

Entertainment-MCP

A Model Context Protocol (MCP) server that enables AI assistants to interact with entertainment APIs.

Overview

Entertainment-MCP provides the following functionalities:

  • Retrieve movie, series, and episode information from OMDB.
  • Get detailed information about movies and TV shows from TMDB.
  • Search and get details about movie collections from TMDB.
  • Discover movies and TV shows by actor from TMDB.
  • Get movies and TV shows by genre from TMDB.
  • Retrieve popular movies and TV shows from TMDB.
  • Search for movies and TV shows by title from TMDB.
  • Search for people (actors) from TMDB.
  • Get trending movies and TV shows from TMDB.
  • Get entertainment suggestions based on genre, release year, and minimum IMDb rating.

Table of Contents

Prerequisites

  • Node.js (v16.0.0 or higher)
  • npm (v7.0.0 or higher)
  • API Keys for OMDB and TMDB (obtainable from their respective websites)
    • OMDB API Key (OMDB_API_KEY)
    • TMDB API Key (TMDB_API_KEY)

Installation

Manual Installation

# Clone the repository
git clone <repository_url>
cd entertainment-mcp

# Install dependencies
npm install

# Compile TypeScript
npm run build

Configuration

All configuration is handled via environment variables. The following options are available:

| Option | Type | Default | Description | |------------------|--------|---------|-------------------------------------------| | OMDB_API_KEY | string | — | Required. OMDB API key. | | TMDB_API_KEY | string | — | Required. TMDB API key. |

You can set these options via environment variables:

OMDB_API_KEY=your_omdb_api_key
TMDB_API_KEY=your_tmdb_api_key

Tools Documentation

OMDB Tools

  • GET_OMDB_INFO: Get detailed information about a movie, series, or episode from OMDB.
    • Parameters:
      • query: The title of the movie, series, or episode to search for (string, required).
      • type: Specify whether to search for a movie, series, or episode (enum: "movie", "series", "episode", optional).

TMDB Tools

  • GET_TMDB_SEARCH_COLLECTIONS: Searches for movie collections by name.

    • Parameters:
      • query: The name of the collection to search for (string, required).
  • GET_TMDB_COLLECTION_DETAILS: Fetches detailed information about a specific movie collection by its ID.

    • Parameters:
      • collectionId: The ID of the collection to get details for (number, required).
  • GET_TMDB_INFO: Get detailed information about a movie or TV show from TMDB.

    • Parameters:
      • query: The title of the movie or TV show to search for (string, required).
      • type: Specify whether to search for a movie or TV show (enum: "movie", "tv", required).
  • GET_TMDB_DISCOVER_BY_ACTOR: Discovers movies or TV shows by an actor's ID.

    • Parameters:
      • actorId: The ID of the actor to discover entertainment for (number, required).
      • mediaType: The type of media to discover (enum: "movie", "tv", required).
      • releaseYear: The release year of the entertainment (number, optional).
  • GET_TMDB_BY_GENRE: Get a list of movies or TV shows by genre from TMDB.

    • Parameters:
      • mediaType: The type of media to search for (enum: "movie", "tv", required).
      • genre: The name of the genre to search for (string, required).
  • GET_TMDB_POPULAR: Get a list of popular movies or TV shows from TMDB.

    • Parameters:
      • mediaType: The type of media to search for (enum: "movie", "tv", required).
  • GET_TMDB_SEARCH_MOVIE_BY_TITLE: Searches for movies by title using the TMDB service.

    • Parameters:
      • title: The title of the movie to search for (string, required).
  • GET_TMDB_PERSON_SEARCH: Searches for people (actors) by name using the TMDB service.

    • Parameters:
      • query: The name of the person (actor) to search for (string, required).
  • GET_TMDB_SEARCH_TV_BY_TITLE: Searches for TV shows by title using the TMDB service.

    • Parameters:
      • title: The title of the TV show to search for (string, required).
  • GET_ENTERTAINMENT_SUGGESTIONS: Suggests entertainment based on genre, release year, and minimum IMDb rating.

    • Parameters:
      • mediaType: The type of media to suggest (enum: "movie", "tv", required).
      • genre: The genre of entertainment to suggest (string, required).
      • releaseYear: The release year of the entertainment (number, optional).
      • minImdbRating: Minimum IMDb rating (1-10) (number, optional).
  • GET_TMDB_TRENDING: Get a list of trending movies or TV shows from TMDB.

    • Parameters:
      • mediaType: The type of media to search for (enum: "all", "movie", "tv", required).
      • timeWindow: The time window to search for trending items (enum: "day", "week", required).

Development

# Development mode
pnpm run dev