MoviePilot API
Use moviepilot_api for normal MoviePilot business operations. The tool accepts
only operation_id, path_params, query, and body. The host chooses the
fixed HTTP method and path, creates the current user's authentication token,
applies authorization and confirmation policy, and returns the API response.
This file is intentionally kept as the routing and execution guide. Detailed
operation contracts live in the linked category files under api/; load only
the one category file needed for the selected operation. Do not load every
category file by default.
Never provide a URL, method, authentication header, API key, or access token.
Never fall back to a retired tool name or moviepilot tool MCP command. If an
operation is not listed in this skill, do not simulate it through arbitrary HTTP;
use a more specific skill or explain that the structured operation is unavailable.
Overall Workflow
- Select the exact
operation_idfrom the category index below. - Call
read_skillagain withname="moviepilot-api"andfile="api/<category>.md"to load the complete standalone category contract. Do not useread_filefor Skill documents. - The selected category file already includes the shared body Models needed to construct its calls; do not load a second Models document.
- Build one gateway call with only declared fields. Preserve source-native identifiers and use the documented pagination fields.
- Obtain confirmation for confirmation-protected or side-effecting operations, then execute the gateway call once.
- Inspect
success,execution_outcome, errors, empty results, and collection metadata before reporting or taking a dependent action. - Verify writes with the category's read-back operation when the contract
requires it; do not repeat a write whose outcome is
unknown.
API Category Index
Each category file contains the complete operation contracts for its namespace. The counts are a maintenance aid for the 220 currently exposed operations.
| Category | Detail file | Operation namespace | Count | Use for |
|---|---|---|---|---|
| Configuration | api/config.md | config.* | 6 | identifiers, public/user settings, system setting discovery and updates |
| Dashboard | api/dashboard.md | dashboard.* | 9 | media, storage, process, system, downloader, CPU, memory, network, and transfer summaries |
| Database | api/database.md | database.backups.* | 4 | administrator backup lifecycle |
| Download | api/download.md | download.* | 7 | download submission, clients, paths, active tasks, and history |
| Filter | api/filter.md | filter.* | 10 | built-in/custom rules, groups, and testing |
| Library | api/library.md | library.* | 2 | existence and latest-media checks |
| Media | api/media.md | media.* | 23 | media search/detail, recognition, scraping, schedules, sources, people, seasons, and classification |
| Music | api/music.md | music.* | 10 | recognition, exploration, albums, artists, and cache administration |
| Plugin | api/plugin.md | plugin.* | 30 | plugin market, install/runtime, configuration, source, folders, ratings, releases, and statistics |
| Recommendation | api/recommendation.md | recommendation.* | 1 | recommendation listings |
| Scheduler | api/scheduler.md | scheduler.* | 3 | scheduler listing, progress, and execution |
| Search | api/search.md | search.* | 4 | title, torrent, result, and recommendation search |
| Site | api/site.md | site.* | 22 | site discovery, authentication, cookies, user data, resources, RSS, priorities, and statistics |
| Slash | api/slash.md | slash.* | 2 | slash-command discovery and execution |
| Storage | api/storage.md | storage.* | 6 | storage settings, browsing, directories, rename, and delete |
| Subscription | api/subscription.md | subscription.* | 29 | subscription CRUD, search/refresh, history, files, sharing, following, and status |
| Subtitle | api/subtitle.md | subtitle.search.* | 2 | subtitle title and media search |
| System | api/system.md | system.* | 12 | versions, update, restart, modules, network, and usage |
| Torrent cache | api/torrent.md | torrent.cache.* | 5 | torrent-cache inspection, refresh, re-identification, and deletion |
| Transfer | api/transfer.md | transfer.* | 15 | transfer queue/history, file, naming, manual review, retry, and target path |
| Workflow | api/workflow.md | workflow.* | 16 | workflow definitions, actions, execution, sharing, and lifecycle |
Each category file is a standalone contract: it contains the operation details and the shared request/response body Models needed by that category. If an operation is added or moved, update its category file, this index, the frontmatter allowlist, and the matching gateway contract together.
API Surface Scope
This Skill is the complete callable MoviePilot business API surface for the
Agent. Every operation in allowed-api-operations has one exact parameter
contract in a category file and one matching MCP tools/list branch. There is
no hidden fallback to an arbitrary REST route.
MoviePilot's underlying OpenAPI document is larger because it also serves the web UI, authentication, account lifecycle, binary and streaming responses, callbacks, compatibility endpoints, and source-specific presentation routes. Those routes are deliberately not copied into this Skill. A non-listed route must be one of the following before the Agent may use its capability:
- represented by one stable aggregate operation in this Skill;
- owned by
downloader-operation,mediaserver-operation, or another domain Skill with its own exact action contract; - reserved for host transport, identity, UI, streaming, binary, or diagnostic behavior and therefore unavailable as an Agent business action; or
- explicitly unapproved until a role, effect, confirmation, recovery, result, and English parameter contract is added.
The maintained route-by-route inventory is
docs/refactor/agent-api-surface-audit.md. Its generated drift test fails
when OpenAPI changes without an explicit ownership decision.
The management recovery route POST /api/v1/history/transfer/{history_id}/discard-corrupt
is reserved for direct authenticated management clients and is not a callable
Agent operation. It clears corrupt task state while retaining the history record.
Calling Contract
Call the gateway with this shape:
json{ "operation_id": "media.search", "path_params": {}, "query": {"title": "The Wandering Earth", "type": "media"}, "body": {} }
Common read and download contracts
Select the operation for the task first, then send only fields declared by that operation. Common verification contracts are:
| operation_id | path_params | query |
|---|---|---|
subscription.find | media_id | media_source; optional season, music_type |
subscription.list | none | optional page, count |
download.tasks.active | none | optional page, count, name |
site.list | none | optional page, count, name, status=all|active|inactive |
The download.add body must contain torrent_in (at least title and enclosure) plus sibling media_source and media_id; do not put a magnet URI in url, or move media identity and filters into query. When a write returns unknown, never retry it; verify the actual state with a supported read operation first.
- Put route placeholders such as
subscribe_id,hashString,plugin_id,workflow_id,media_id,storage,rule_id, andnameinpath_params. - Put GET filters and control values in
query. The gateway also accepts GET values inbody, but usequeryconsistently except for the protected secret flow below. - Put POST, PUT, and PATCH request models in
body. - Preserve the exact source-native
media_source+media_idreturned by a search or detail response. For music, also preservemusic_type=recording|album|artist; an artist is browse-only. - Treat
success=false, HTTP error data, empty results, and validation errors as real outcomes. Do not claim success without checking the response. - Respect an explicit
execution_outcome:pendingis accepted but unfinished, whileunknownmeans a write may have happened. Do not repeat an unknown write or change defaults merely to evade duplicate protection. In the built-in Agent, useget_tool_executionwith the returned invocation ID; the host can reconcile supported non-sensitive setting replacements through a read-only check. - When a built-in Agent preview contains
result_idandnext_offset, useread_tool_resultfor the next page instead of repeating the operation. These receipt and result tools are internal to the Agent, not external MCP tools.
Collection Counts And Pagination
- For list inspection, explicitly send the operation's documented pagination
fields instead of requesting an unbounded legacy result. For optional legacy
pagination, start with
query={"page":1,"count":20}. - For a count or summary request when the operation documents an exact total,
send
query={"page":1,"count":1}and readcollection.total_count. This is the authoritative count after the endpoint's authorization scope and filters. - A large item list or
tool_result_truncated=truedoes not make the total unavailable. The gateway placescollectionbeforedata, so its exact metadata remains visible in the bounded preview. Never query the MoviePilot database merely to recover a total already declared by the API contract. - Use
database-operationonly for administrator diagnostics or aggregations that the business API cannot express. Do not use it as a fallback for an API list count. If an operation explicitly omitscollection.total_count, do not infer a total from one page; continue its native pagination or state that the upstream total is unavailable.
Cross-Skill Routing
Use downloader-operation for downloader instances, task inspection, and native
task control. Use mediaserver-operation for libraries, items, playback
sessions, scans, refreshes, and other native media-server capabilities.
Operation Order And Failure Handling
- Select the operation first, then place each value in its documented bucket. Never move query fields into path_params or send undeclared fields.
- Reuse the exact
media_source+media_idpair returned by search. For music, also preservemusic_type. - Downloads, transfers, configuration/rule/plugin writes, scheduler/workflow runs, and deletions have side effects; obtain confirmation and inspect the result.
success=false, HTTP errors, validation errors, and empty results are real outcomes. Never report them as success.- Use
database-operation,downloader-operation, ormediaserver-operationfor their native capabilities. Never bypass the gateway with an arbitrary URL.

