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

tmdb-mcp-server

v0.1.1

Published

MCP server for The Movie Database (TMDB) API

Readme

TMDB MCP Server

A Model Context Protocol (MCP) server that provides access to The Movie Database (TMDB) API. This server enables Claude and other MCP clients to search for movies, TV shows, and people, as well as get detailed information and recommendations.

Features

🎬 Movie Tools

  • search_movies - Search for movies by title
  • get_movie_details - Get detailed information about a specific movie (budget, revenue, runtime, genres, etc.)
  • discover_movies - Discover movies with advanced filters (genre, language, year range, rating, sorting)
  • get_recommendations - Get movie recommendations based on a specific movie
  • get_movie_credits - Get cast and crew information for a movie

📺 TV Show Tools

  • search_tv_shows - Search for TV shows by name
  • get_tv_details - Get detailed information about a specific TV show (seasons, episodes, networks, etc.)
  • discover_tv_shows - Discover TV shows with advanced filters (genre, language, year, rating, sorting)
  • get_tv_recommendations - Get TV show recommendations based on a specific show
  • get_tv_credits - Get cast and crew information for a TV show

👥 People Tools

  • search_people - Search for actors, directors, and other entertainment industry professionals
  • get_person_details - Get detailed biographical information about a person

🔥 Trending

  • get_trending - Get daily or weekly trending movies, TV shows, or people

Installation

Prerequisites

  • Node.js (v18 or higher)
  • A TMDB API access token (get one free at TMDB)

Setup

  1. Clone the repository:
git clone https://github.com/tcehjaava/tmdb-mcp-server.git
cd tmdb-mcp-server
  1. Install dependencies:
npm install
  1. Create a .env file with your TMDB access token:
cp .env.example .env
# Edit .env and add your TMDB_ACCESS_TOKEN
  1. Build the server:
npm run build

Usage

With Claude Desktop

Add the server to your Claude Desktop configuration:

MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "tmdb": {
      "command": "node",
      "args": ["/absolute/path/to/tmdb-mcp-server/build/index.js"],
      "env": {
        "TMDB_ACCESS_TOKEN": "your_token_here"
      }
    }
  }
}

With Other MCP Clients

The server runs on stdio by default, making it compatible with any MCP client that supports stdio transport.

Remote Deployment (HTTP Mode)

The server also supports Streamable HTTP transport for remote deployment:

MCP_TRANSPORT=http PORT=3000 node build/index.js

See TRANSPORT.md for detailed deployment instructions for platforms like Railway.

Development

Local Development

Run the server in watch mode for development:

npm run watch

Debugging

Use the MCP Inspector for debugging:

npm run inspector

The Inspector provides a web interface for testing and debugging MCP tools.

Code Formatting

Format code with Prettier:

npm run format

Example Queries

Here are some example queries you can try with Claude:

  • "Find Japanese sci-fi movies from 2020 onwards with a rating above 7"
  • "What are the top trending movies this week?"
  • "Get me recommendations based on The Matrix"
  • "Search for Christopher Nolan movies"
  • "Show me details about the TV show Breaking Bad"
  • "Find Korean dramas with high ratings"

API Rate Limits

TMDB API has rate limits on their free tier:

  • 50 requests per second
  • Consider implementing caching for production use

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

See CONTRIBUTING.md for guidelines.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Links