Skip to main content
Glama
rollecode

Transmission MCP server

by rollecode

get_bandwidth_groups

Read-onlyIdempotent

Retrieve bandwidth groups and their configured speed limits from Transmission. Optionally filter by group name to check specific throttling settings.

Instructions

Get bandwidth groups and their speed limits.

Args: group: One group name. Omit for every group.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
groupNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds the optional group filtering behavior, but does not disclose response, error, or edge-case behavior. No contradiction with annotations.

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?

The description is extremely concise and front-loaded with the core purpose. The optional parameter note is brief and useful, with no filler or unnecessary repetition.

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

Completeness4/5

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

Given rich annotations, an output schema, and a single optional parameter, the description is mostly complete for invoking the tool correctly. It could be slightly stronger by explicitly contrasting with set_bandwidth_group or noting error behavior, but this is not a major gap.

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 schema has no parameter descriptions, but the description clarifies that 'group' accepts one group name and that omitting it returns all groups. This adds meaningful semantic context beyond the raw schema.

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 description uses a specific verb 'Get' with a clear resource ('bandwidth groups') and specifies the returned content ('their speed limits'). It is clearly distinguishable from sibling tools like set_bandwidth_group, which suggests a write operation.

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?

No guidance is given about when to use this tool versus alternatives such as set_bandwidth_group. The only usage instruction is parameter-level ('Omit for every group'), not tool-selection guidance.

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