Skip to main content
Glama
mattmaas

qBittorrent MCP Server

by mattmaas

qbittorrent_get_preferences

Retrieve qBittorrent application settings to view save paths, speed limits, and connection options. Use it to inspect current client configuration before adjusting transfer behavior.

Instructions

Get qBittorrent application settings (save path, speed limits, connection settings, etc.).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. 'Get' implies a safe, non-mutating read, and the field enumeration hints at the payload's breadth, but it says nothing about permissions, whether settings reflect live or persisted state, or the response shape for a tool with no output schema.

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?

One sentence, front-loaded with the verb and resource, with the example settings parenthetical adding scope without bloat. Nothing is redundant or wasted.

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

Completeness3/5

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

For a no-parameter, no-output-schema read tool with no annotations, the description is adequate but thin: the 'etc.' leaves the returned field set open-ended and there is no indication of response structure or state semantics. It is the minimum viable description rather than a complete one.

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

Parameters4/5

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

The tool takes zero parameters, so the baseline of 4 applies. The description correctly implies a no-argument, whole-configuration fetch, and there is no parameter semantics left to document.

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

Purpose4/5

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

States a specific verb and resource (get qBittorrent application settings) and enumerates the settings families it covers (save path, speed limits, connection settings), which differentiates it from siblings like get_transfer_info or get_app_version. It stops short of naming a sibling or explicitly contrasting scope, so it is clear but not fully disambiguating.

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

Usage Guidelines2/5

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

There is no guidance on when to call this versus the many other read tools in the family (get_transfer_info, get_app_version). The read-only nature is implied only by the verb 'Get'; no prerequisites, frequency, or context is offered.

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