Skip to main content
Glama
rollecode

Radarr MCP server

by rollecode

create_rootfolder

Idempotent

Adds a new root folder to Radarr to specify a storage location for downloaded and managed movies.

Instructions

Create RootFolder.

POST /api/v3/rootfolder

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

Annotations already indicate this is a mutating, non-destructive, idempotent operation. The description adds little behavioral context beyond 'Create' and the HTTP method; it does not disclose side effects, validation behavior, or error conditions.

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 short, direct, and front-loaded with the action and endpoint. Every sentence earns its place, and the pointer to GET/schema is a compact and useful addition.

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?

For a single-body create tool with an output schema and relevant annotations, the description is adequately complete. The main missing piece is behavioral detail, but the instruction to read GET/schema covers the primary unknown: what body fields are expected.

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

Parameters3/5

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

The schema only documents 'body' as an opaque object, so the description's clarification that it is a request payload and the guidance to consult GET or /schema for expected fields adds actionable value. Still, it does not enumerate any RootFolder fields, leaving a discovery round-trip necessary.

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?

The description clearly states the action ('Create') and the resource ('RootFolder'), and provides the HTTP endpoint. While it doesn't explain what a RootFolder is, the resource name is enough to distinguish it from the many sibling create_* tools.

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

Usage Guidelines3/5

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

It implies use when creating a RootFolder and gives a useful prerequisite: read the matching GET or /schema endpoint first. However, it does not state when to prefer this tool over alternatives or provide any exclusion criteria.

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

Deploy Server

Other Tools