Move Torrent in Queue
transmission_queue_moveReorders torrents in the download queue to change their download priority. Move specific torrents to the top, bottom, up, or down to control download order.
Instructions
Move torrent(s) to a different position in the download queue.
This tool reorders torrents in the download queue. Use this to prioritize certain downloads by moving them to the top or adjusting their position.
Args:
ids (number | number[] | 'all'): Torrent ID(s) to move
direction ('top' | 'up' | 'down' | 'bottom'): Where to move the torrent(s)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Confirmation of queue position change
Examples:
Use when: "Move torrent 5 to top of queue" -> params with direction='top'
Use when: "Move torrent 3 down in the queue" -> params with direction='down'
Use when: "Prioritize torrents 1 and 2" -> params with ids=[1, 2], direction='top'
Error Handling:
Returns error if torrent IDs don't exist
Moving to top/bottom is idempotent
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Torrent ID(s) to operate on - can be a single ID, array of IDs, or 'all' | |
| direction | Yes | Direction to move: 'top', 'up', 'down', or 'bottom' | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |