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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@striderlabs/mcp-netflix

v1.0.0

Published

MCP server for Netflix account management via Playwright browser automation

Downloads

35

Readme

@striderlabs/mcp-netflix

MCP (Model Context Protocol) server for Netflix account management via Playwright browser automation.

Features

  • Login and persistent session management
  • Profile management (list, switch profiles)
  • Title search with type filtering
  • Detailed title information
  • My List management (add/remove/view)
  • Continue Watching list
  • Personalized recommendations
  • Account information
  • Watch history
  • Title rating (thumbs up/down/two thumbs up)

Installation

npm install -g @striderlabs/mcp-netflix
npx playwright install chromium

Usage

MCP Configuration

Add to your Claude Desktop / MCP client configuration:

{
  "mcpServers": {
    "netflix": {
      "command": "striderlabs-mcp-netflix"
    }
  }
}

Or with npx:

{
  "mcpServers": {
    "netflix": {
      "command": "npx",
      "args": ["-y", "@striderlabs/mcp-netflix"]
    }
  }
}

Session Persistence

Sessions are stored in ~/.mcp-netflix-session/ and persist across restarts. You only need to log in once.

Tools

netflix_login

Log in to Netflix with your credentials.

Parameters:

  • email (string, required): Netflix account email
  • password (string, required): Netflix account password

Example:

{
  "email": "[email protected]",
  "password": "yourpassword"
}

netflix_get_profiles

Get all profiles on the Netflix account.

Returns: List of profile names.


netflix_switch_profile

Switch to a specific profile.

Parameters:

  • profile_name (string, required): Name of the profile to switch to

Example:

{
  "profile_name": "Alice"
}

netflix_search_titles

Search for movies and TV shows.

Parameters:

  • query (string, required): Search query
  • type (string, optional): Filter by "movie", "show", or "all" (default: "all")

Example:

{
  "query": "Stranger Things",
  "type": "show"
}

Returns: List of titles with IDs.


netflix_get_title_details

Get detailed information about a title.

Parameters:

  • title_id (string, required): Netflix title ID (found via search)

Example:

{
  "title_id": "80057281"
}

Returns: Title name, year, rating, genres, synopsis, match score.


netflix_add_to_list

Add a title to My List.

Parameters:

  • title_id (string, required): Netflix title ID

netflix_remove_from_list

Remove a title from My List.

Parameters:

  • title_id (string, required): Netflix title ID

netflix_get_my_list

Get all titles saved in My List.

Returns: List of titles with IDs.


netflix_get_continue_watching

Get titles you've started but not finished.

Returns: List of in-progress titles.


netflix_get_recommendations

Get personalized recommendations from the Netflix homepage.

Returns: List of recommended titles.


netflix_get_account_info

Get account details.

Returns: Email, plan type, member since date, next billing date.


netflix_get_watch_history

Get viewing history for the current profile.

Returns: List of watched titles with dates (up to 50 most recent).


netflix_rate_title

Rate a title.

Parameters:

  • title_id (string, required): Netflix title ID
  • rating (string, required): One of "thumbs_up", "thumbs_down", or "two_thumbs_up"

Example:

{
  "title_id": "80057281",
  "rating": "two_thumbs_up"
}

Development

# Install dependencies
npm install

# Install Playwright browsers
npx playwright install chromium

# Build
npm run build

# Run directly
node dist/index.js

Notes

  • This server uses Playwright to automate a real browser session. Netflix's UI may change, which could affect functionality.
  • Sessions are stored locally at ~/.mcp-netflix-session/.
  • The server runs in headless browser mode by default.
  • Netflix may require additional verification steps (SMS, email) on first login from a new device.

License

MIT