MCP (Model Context Protocol) server connector for Max (HBO Max streaming service). Enables AI agents to interact with Max using browser automation via Playwright.
- Search content — Search for movies and TV shows by title, actor, genre, etc.
- Get content details — Retrieve detailed info including description, cast, rating, year, and genre
- View watchlist — Access the user's saved content (My Stuff)
- Add/remove from watchlist — Manage watchlist items
- Continue watching — Get in-progress content with completion percentage
- Viewing history — Access previously watched content
npm install -g @striderlabs/mcp-maxOr use directly with npx:
npx @striderlabs/mcp-maxAdd to your MCP client configuration (e.g., Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"max": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-max"]
}
}
}This connector uses browser automation. To use features that require authentication (watchlist, continue watching, viewing history), you'll need to be logged into Max in the browser session.
The browser runs in headless mode by default. For first-time login, you may need to modify the headless option to false temporarily to complete authentication.
Search for movies and TV shows.
Parameters:
query(required): Search termstype(optional):"movie","series", or"all"(default)
Get detailed information about a specific title.
Parameters:
url(required): Content URL or path (e.g.,/movies/the-dark-knight)
Retrieve the user's watchlist (My Stuff). Requires login.
Add content to the user's watchlist.
Parameters:
url(required): Content URL or path
Remove content from the user's watchlist.
Parameters:
url(required): Content URL or path
Get in-progress content with completion percentages. Requires login.
Retrieve viewing history. Requires login.
# Install dependencies
npm install
# Build
npm run build
# Run locally
node dist/index.js- Node.js 18+
- Playwright (automatically installed as a dependency)
MIT