Skip to main content
Glama
rollecode

Transmission MCP server

by rollecode

get_free_space

Read-onlyIdempotent

Check free space in any directory visible to the Transmission daemon. Supply a path to determine available capacity for storing torrents.

Instructions

Get free space in a directory the daemon can see.

Args: path: A directory path on the machine running Transmission, not on this one.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds useful context about the daemon-side path, but does not disclose any additional behavioral traits such as error conditions or filesystem resolution rules.

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 efficient: one clear opening sentence plus a focused parameter explanation. No wasted words, and the most important scoping detail is front-loaded.

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?

For a single-parameter, read-only, idempotent tool with an output schema, this description is complete. It tells the agent what the tool does, where the path must reside, and the annotations plus output schema cover safety and return shape.

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 coverage is 0%, so the description carries full responsibility for parameter meaning. It does this well: 'path' is explained as a directory path on the machine running Transmission, not on this one, which adds critical semantic information the schema does not provide.

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-resource pair: 'Get free space in a directory.' It also clarifies the directory is one 'the daemon can see,' which meaningfully distinguishes the operation from any local filesystem query and aligns with the tool name.

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 clearly states the relevant context: the path must be on the machine running Transmission, not the client machine. None of the sibling tools relate to disk-space queries, so this tool's usage is effectively unambiguous even though no explicit alternatives are mentioned.

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