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-crunchyroll

v0.1.1

Published

Crunchyroll anime streaming MCP connector for personal AI agents

Readme

@striderlabs/mcp-crunchyroll

Crunchyroll anime streaming MCP connector for personal AI agents. Lets Claude and other AI assistants manage your Crunchyroll account — search anime, track progress, manage your watchlist, get recommendations, and more.

Features

  • Search anime series and movies
  • Browse by genre, popularity, new additions, or simulcast season
  • Show details — series info, seasons, episodes
  • Watchlist management — add, remove, view
  • Watch history & progress — track and update playhead positions
  • Continue watching — pick up where you left off
  • Recommendations — personalized and similar-to suggestions
  • Simulcast schedule — current and past seasonal tags
  • Subscription info — tier, renewal date, status

Setup

Install

npm install -g @striderlabs/mcp-crunchyroll

Or use with npx (no install needed):

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

MCP Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

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

Or if installed globally:

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

Authentication

After connecting, log in once with your Crunchyroll credentials:

crunchyroll_login(email: "[email protected]", password: "your-password")

Tokens are saved to ~/.strider/crunchyroll/ and automatically refreshed. You only need to log in again if tokens expire or you call crunchyroll_logout.

Tools

Authentication

| Tool | Description | |------|-------------| | crunchyroll_login | Log in with email + password | | crunchyroll_logout | Clear saved session | | crunchyroll_status | Check login status and account info |

Search & Browse

| Tool | Description | |------|-------------| | crunchyroll_search | Search anime series and movies | | crunchyroll_browse | Browse by popularity, genre, season, sub/dub | | crunchyroll_get_categories | List all genres/categories | | crunchyroll_get_simulcast_seasons | List simulcast season tags |

Show Details

| Tool | Description | |------|-------------| | crunchyroll_get_series | Get series info by ID | | crunchyroll_get_seasons | Get seasons for a series | | crunchyroll_get_episodes | Get episodes in a season | | crunchyroll_get_episode | Get single episode details |

Watchlist

| Tool | Description | |------|-------------| | crunchyroll_get_watchlist | View saved watchlist | | crunchyroll_add_to_watchlist | Add series/movie to watchlist | | crunchyroll_remove_from_watchlist | Remove from watchlist |

Watch History & Progress

| Tool | Description | |------|-------------| | crunchyroll_get_history | Recently watched episodes | | crunchyroll_continue_watching | In-progress anime | | crunchyroll_get_playheads | Progress for specific content IDs | | crunchyroll_update_playhead | Update watch position (seconds) |

Recommendations

| Tool | Description | |------|-------------| | crunchyroll_get_recommendations | Personalized recommendations | | crunchyroll_get_similar | Anime similar to a given series |

Account

| Tool | Description | |------|-------------| | crunchyroll_get_subscription | Subscription tier and renewal info |

Example Prompts

  • "What anime should I watch next based on my history?"
  • "Add Attack on Titan to my watchlist"
  • "What's airing this season? Sort by popularity"
  • "Where did I leave off watching One Piece?"
  • "Show me all the action anime added this week"
  • "When does my Crunchyroll subscription renew?"

Notes

  • Uses the Crunchyroll web API (same endpoints as the website)
  • Tokens are stored locally in ~/.strider/crunchyroll/ and auto-refreshed
  • Content IDs can be found in search results or Crunchyroll URLs
  • API endpoints are subject to change by Crunchyroll

License

MIT