Skip to main content
Glama
rollecode

Transmission MCP server

by rollecode

add_torrent

Idempotent

Add torrents from magnet links, URLs, local .torrent files, or base64 metainfo while configuring download location, paused state, labels, file priorities, and peer limits.

Instructions

Add a torrent from a magnet link, a URL, a local file or raw metainfo.

Args: filename: A magnet link or the URL of a .torrent file. torrent_file: Path to a .torrent file on this machine, read and encoded for you. metainfo: Base64 .torrent contents, if you already have them. download_dir: Where to put the data. Defaults to the session setting. paused: Add without starting. labels: Labels to attach. peer_limit: Maximum peers for this torrent. bandwidth_priority: -1 low, 0 normal, 1 high. files_wanted: Indices of files to download. Omit for all. files_unwanted: Indices of files to skip. priority_high: Indices of files to fetch first. priority_low: Indices of files to fetch last. priority_normal: Indices of files at normal priority. cookies: Cookies to send when fetching a .torrent URL. sequential_download: Download pieces in order rather than rarest first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelsNo
pausedNo
cookiesNo
filenameNo
metainfoNo
peer_limitNo
download_dirNo
files_wantedNo
priority_lowNo
torrent_fileNo
priority_highNo
files_unwantedNo
priority_normalNo
bandwidth_priorityNo
sequential_downloadNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes beyond the annotations by specifying useful behaviors: torrent_file is 'read and encoded for you', download_dir 'Defaults to the session setting', and paused means 'Add without starting.' This gives the agent practical expectations about side effects and defaults beyond the idempotentHint annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A one-sentence purpose summary is front-loaded, followed by a compact and clearly formatted Args list. Every line adds needed information, especially given the lack of schema-level parameter descriptions.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the high parameter count, an output schema, and annotations already available, the description covers all necessary input semantics and default behaviors. Nothing essential for calling the tool correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description carries the full burden of explaining parameters. It does so thoroughly, covering every one of the 15 parameters with meaningful semantics like 'cookies: Cookies to send when fetching a .torrent URL' and 'bandwidth_priority: -1 low, 0 normal, 1 high.'

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first sentence states a specific action and resource: 'Add a torrent from a magnet link, a URL, a local file or raw metainfo.' This clearly distinguishes it from sibling tools like set_torrent, remove_torrent, or start_torrents, so an agent can identify its purpose immediately.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the use case clear: adding a new torrent through several input methods. It does not explicitly name alternative tools or exclusion conditions, but the context is unambiguous and no misleading guidance is present.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.