search_torrents
Find torrents by searching across multiple sources using qBittorrent's search plugins. Filter results by category including movies, TV shows, music, games, and software.
Instructions
Search for torrents using qBittorrent's search plugins.
Args: query: Search query string plugins: Comma-separated list of plugin names or "all" for all enabled plugins category: Filter by category (all, movies, tv, music, games, anime, software, pictures, books)
Returns: List of search results with torrent information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | all | |
plugins | No | all | |
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "all",
"type": "string"
},
"plugins": {
"default": "all",
"type": "string"
},
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}