Install
openclaw skills install moviepilotClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
MoviePilot media subscription and management tool. Use when the user wants to: (1) search for movies or TV shows, (2) subscribe/follow movies or TV shows for automatic download, (3) view or manage existing subscriptions, (4) cancel subscriptions, (5) check download status, (6) browse recommendations (Douban/TMDB/Bangumi), or any task involving MoviePilot.
openclaw skills install moviepilotInteract with MoviePilot API to search, subscribe, and manage movies/TV shows.
Required environment variables (must be set before use):
MOVIEPILOT_URL - MoviePilot server URL (e.g., http://127.0.0.1:3000)MOVIEPILOT_API_KEY - API Key for authentication (preferred)MOVIEPILOT_TOKEN - Bearer token (obtained via login)If credentials are not set, ask the user to provide them.
Typical user request: "帮我订阅《XXX》" or "Subscribe to XXX"
Steps:
scripts/moviepilot_api.sh search "title"tmdb_id (or douban_id), type, title, year from the chosen resultscripts/moviepilot_api.sh sub_add '{"name":"Title","type":"电影","tmdbid":12345,"year":"2024"}'
"season": N if subscribing to a specific seasontype must be "电影" (movie) or "电视剧" (TV show)scripts/moviepilot_api.sh sub_list
Present results as a readable list: name, type, year, state.
By subscription ID:
scripts/moviepilot_api.sh sub_delete <subscribe_id>
By media ID:
scripts/moviepilot_api.sh sub_delete_media "tmdb:12345"
scripts/moviepilot_api.sh downloads
# Options: douban_movie_hot, douban_tv_hot, tmdb_trending, tmdb_movies, tmdb_tvs, bangumi_calendar
scripts/moviepilot_api.sh recommend douban_movie_hot
scripts/moviepilot_api.sh search_resource "keyword"
tmdb:12345, douban:12345, bangumi:12345type field in Chinese: "电影" for movies, "电视剧" for TV showsThe helper script scripts/moviepilot_api.sh supports these actions:
| Action | Description | Example |
|---|---|---|
login | Get auth token | login user pass |
search | Search media | search "流浪地球" |
media_detail | Media details | media_detail "tmdb:12345" |
sub_list | List subscriptions | sub_list |
sub_add | Add subscription | sub_add '{"name":"...","type":"电影","tmdbid":123}' |
sub_delete | Delete by sub ID | sub_delete 5 |
sub_delete_media | Delete by media ID | sub_delete_media "tmdb:123" |
sub_detail | Subscription detail | sub_detail 5 |
sub_refresh | Refresh all subs | sub_refresh |
sub_history | Subscription history | sub_history movie |
downloads | Active downloads | downloads |
recommend | Browse recommendations | recommend tmdb_trending |
search_resource | Search torrents | search_resource "keyword" |