Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

create_delayprofile

Idempotent

Create a delay profile to set waiting periods for quality upgrades, preventing premature downloads and optimizing media library bandwidth.

Instructions

Create DelayProfile.

POST /api/v3/delayprofile

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

C2.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true, so the safety profile is covered. The description adds the instruction to read the GET/schema endpoint first, which is useful context, but it does not disclose what happens on creation, validation behavior, or side effects.

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

Conciseness4/5

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

The description is short and front-loaded with the action and endpoint. The Args section is minimal and the pointer to the schema endpoint is useful, though the 'Args:' label adds little value.

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

Completeness2/5

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

For a create operation with an opaque body and no schema coverage, the description is incomplete. It relies entirely on the agent fetching the GET or /schema endpoint, and it does not explain the resource's purpose, required fields, or expected response. The output schema exists but the description does not reference it.

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

Parameters2/5

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

Schema description coverage is 0%, and the only parameter is an opaque 'body' object with additionalProperties: true. The description tells the agent to read the GET or /schema endpoint to learn the fields, which is a workaround, but it does not itself add any semantic meaning to the body parameter.

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

Purpose3/5

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

The description states a clear verb and resource ('Create DelayProfile') and includes the HTTP endpoint, so an agent knows what the tool does. However, it does not explain what a DelayProfile is or how it differs from the many other create_* siblings, so differentiation is weak.

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?

The description gives no guidance on when to use this tool versus alternatives. It only says to read the matching GET or /schema endpoint first, which is a prerequisite hint but not a usage condition or exclusion.

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