Update Torrent Settings
transmission_set_torrentConfigure selected torrents' labels, bandwidth priority, speed limits, and seeding behavior.
Instructions
Update settings for specific torrent(s) including labels, speed limits, and seed ratios.
This tool modifies torrent-specific settings. You can update labels, bandwidth priorities, speed limits, and seeding behavior.
Args:
ids (number | number[] | 'all'): Torrent ID(s) to update
labels (string[], optional): Labels to apply
bandwidthPriority (number, optional): Priority: -1 (low), 0 (normal), 1 (high)
downloadLimit (number, optional): Download speed limit in KB/s
downloadLimited (boolean, optional): Enable download speed limit
uploadLimit (number, optional): Upload speed limit in KB/s
uploadLimited (boolean, optional): Enable upload speed limit
seedRatioLimit (number, optional): Torrent-specific seed ratio limit
seedRatioMode (number, optional): 0 (use global), 1 (use torrent), 2 (unlimited)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Confirmation of updated settings
Examples:
Use when: "Set torrent 5 label to 'movies'"
Use when: "Limit download speed to 500 KB/s for torrent 3"
Use when: "Set high priority for torrents 1 and 2"
Error Handling:
Returns error if torrent IDs don't exist
Validates numeric ranges for limits and priorities
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Torrent ID(s) to operate on - can be a single ID, array of IDs, or 'all' | |
| labels | No | Labels for the torrent | |
| uploadLimit | No | Maximum upload speed in KB/s | |
| downloadLimit | No | Maximum download speed in KB/s | |
| seedRatioMode | No | Seed ratio mode: 0 (global), 1 (torrent), 2 (unlimited) | |
| uploadLimited | No | Enable upload speed limit | |
| seedRatioLimit | No | Torrent-specific seed ratio limit | |
| downloadLimited | No | Enable download speed limit | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |
| bandwidthPriority | No | Priority: -1 (low), 0 (normal), 1 (high) |