CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
markswendsen-code avatar

Crunchyroll

markswendsen-code/mcp-crunchyroll
STDIOregistry active
Summary

This connects Claude to your Crunchyroll account using the same web API that powers the streaming site. You get tools to search anime, browse by genre or simulcast season, manage your watchlist, and track watch progress with playhead positions. Authentication happens once via email and password, then tokens are stored locally and auto-refreshed. Useful when you want to ask Claude for recommendations based on your history, pick up where you left off mid-series, or manage your queue conversationally instead of opening the app. Also exposes subscription details and simulcast schedules. Requires an active Crunchyroll account and handles the full lifecycle from search to updating watch positions.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

@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: "you@example.com", 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

ToolDescription
crunchyroll_loginLog in with email + password
crunchyroll_logoutClear saved session
crunchyroll_statusCheck login status and account info

Search & Browse

ToolDescription
crunchyroll_searchSearch anime series and movies
crunchyroll_browseBrowse by popularity, genre, season, sub/dub
crunchyroll_get_categoriesList all genres/categories
crunchyroll_get_simulcast_seasonsList simulcast season tags

Show Details

ToolDescription
crunchyroll_get_seriesGet series info by ID
crunchyroll_get_seasonsGet seasons for a series
crunchyroll_get_episodesGet episodes in a season
crunchyroll_get_episodeGet single episode details

Watchlist

ToolDescription
crunchyroll_get_watchlistView saved watchlist
crunchyroll_add_to_watchlistAdd series/movie to watchlist
crunchyroll_remove_from_watchlistRemove from watchlist

Watch History & Progress

ToolDescription
crunchyroll_get_historyRecently watched episodes
crunchyroll_continue_watchingIn-progress anime
crunchyroll_get_playheadsProgress for specific content IDs
crunchyroll_update_playheadUpdate watch position (seconds)

Recommendations

ToolDescription
crunchyroll_get_recommendationsPersonalized recommendations
crunchyroll_get_similarAnime similar to a given series

Account

ToolDescription
crunchyroll_get_subscriptionSubscription 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

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Search & Web CrawlingMedia & Entertainment
Registryactive
Package@striderlabs/mcp-crunchyroll
TransportSTDIO
UpdatedMar 30, 2026
View on GitHub

More from markswendsen-code

  • Gmail
  • Kroger
  • Panera
  • Spotify
  • Tacobell
  • Taskrabbit
  • Southwest
  • Venmo
  • Walmart
  • Yelp
  • Doordash4
  • Delta3
  • Grubhub1
  • Instacart1
  • Opentable1
  • Ubereats1
  • Target1
  • Chipotle

Related Search & Web Crawling MCP Servers

View all →
markswendsen-code avatar
Gmail

io.github.markswendsen-code/gmail

Gmail MCP server — send, read, and search email. By Strider Labs.
markswendsen-code avatar
Kroger

io.github.markswendsen-code/kroger

MCP server for Kroger - search products, manage cart, place grocery orders
markswendsen-code avatar
Southwest

io.github.markswendsen-code/southwest

MCP server for Southwest Airlines - search flights, manage bookings
markswendsen-code avatar
Spotify

io.github.markswendsen-code/spotify

MCP server for Spotify - let AI agents control playback, search music, and manage playlists
markswendsen-code avatar
Walmart

io.github.markswendsen-code/walmart

MCP server for Walmart - search products, manage cart, track orders
markswendsen-code avatar
Yelp

io.github.markswendsen-code/yelp

MCP server for Yelp - search businesses, read reviews, make reservations