# TMDB Server

This server integrates with The Movie Database (TMDB) API to provide movie information, search capabilities, and recommendations.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add Laksh-star/mcp-server-tmdb

# Browse available tools
npx -y @smithery/cli@latest tool list Laksh-star/mcp-server-tmdb

# Get full schema for a tool
npx -y @smithery/cli@latest tool get Laksh-star/mcp-server-tmdb search_movies

# Call a tool
npx -y @smithery/cli@latest tool call Laksh-star/mcp-server-tmdb search_movies '{}'
```

## Tools (3)

- `search_movies` — Search for movies by title or keywords
- `get_recommendations` — Get movie recommendations based on a movie ID
- `get_trending` — Get trending movies for a time window

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get Laksh-star/mcp-server-tmdb <tool-name>
```

---

Source: https://github.com/Laksh-star/mcp-server-tmdb | License: ISC
