MCP.so
ログイン
Q

qBittorrent MCP

@Igloo302

qBittorrent MCP について

本项目提供了一个通过MCP协议与QBittorrent WebUI进行交互的Python客户端,可以方便地管理QBittorrent中的种子。

基本情報

カテゴリ

その他

トランスポート

stdio

公開者

Igloo302

投稿者

Igloo302

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "qbittorrent-mcp": {
      "command": "uv",
      "args": [
        "run",
        "qbittorrent-mcp.py"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is qBittorrent MCP?

qBittorrent MCP is a Python client that interacts with the qBittorrent WebUI via the Model Context Protocol (MCP), enabling users to manage torrents in qBittorrent programmatically. It is designed for developers or automation workflows that need to control torrent tasks through MCP-based systems.

How to use qBittorrent MCP?

Ensure Python >= 3.7, clone the repository, and install dependencies with pip install -r requirements.txt. Configure the qBittorrent WebUI connection (host, port, username, password) in qbittorrent-mcp.py. Use the provided async functions, e.g., await connect(host, port, username, password) to connect, then call list_torrents(), pause_torrent(), resume_torrent(), delete_torrent(), or add_magnet() to manage torrents.

Key features of qBittorrent MCP

  • Connects to qBittorrent WebUI via MCP protocol
  • Lists all torrents in the qBittorrent client
  • Pauses and resumes individual torrents
  • Deletes specified torrents from the client
  • Adds new torrents using magnet links

Use cases of qBittorrent MCP

  • Remotely manage torrents by sending commands through MCP
  • Automate adding magnet links to qBittorrent
  • Pause or resume specific torrents programmatically
  • Remove unwanted torrents without manual intervention
  • Integrate torrent management into larger MCP-based workflows

FAQ from qBittorrent MCP

What Python version is required?

Python 3.7 or higher is required.

How do I configure the connection to qBittorrent WebUI?

Set the host, port, username, and password in the qbittorrent-mcp.py file.

What dependencies does qBittorrent MCP need?

The project depends on httpx and mcp, installed via pip install -r requirements.txt.

How can I add a magnet link to qBittorrent?

Use the add_magnet(magnet_url) async function after connecting.

How do I connect to the qBittorrent WebUI?

Call await connect(host, port, username, password) with your WebUI credentials.

コメント

「その他」の他のコンテンツ