Skip to main content
Glama
rollecode

Sonarr MCP server

by rollecode

create_remotepathmapping

Idempotent

Creates a remote path mapping to link remote and local paths, ensuring Sonarr correctly identifies files. Use after reviewing the expected schema or matching GET.

Instructions

Create RemotePathMapping.

POST /api/v3/remotepathmapping

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

A3.6/5.0
Behavior3/5

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

The description aligns with annotations (write operation, non-destructive, idempotent) and adds a practical pointer to fetch the schema first. It does not contradict any annotation, but it does not disclose additional behavioral traits such as side effects, required permissions, or rate limits. Given annotations already carry the safety profile, the added context is modest.

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: two sentences and an args line, with the core purpose front-loaded. Every sentence earns its place, and there is no redundant information. It is well-structured for quick parsing.

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 that an output schema exists and the single parameter is a free-form object, the description adequately directs the agent to the necessary schema documentation. It does not explain the semantic purpose of a RemotePathMapping, but that is not essential for correct invocation. The description is complete enough for an agent to know how to proceed, though it lacks any note on required vs optional fields.

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 has 0% description coverage for the single 'body' parameter, which is a free-form object. The description compensates by explicitly instructing the agent to consult the GET or /schema endpoint for field definitions. This is helpful but stops short of enumerating any fields or required properties, so the agent must perform an extra step to understand the payload.

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 ('RemotePathMapping'), and includes the HTTP endpoint. It is specific enough to distinguish from update/delete/get operations, though it relies on the resource name rather than elaborating what a RemotePathMapping is.

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 gives the explicit instruction to read the matching GET or the /schema endpoint first to understand expected fields, which is useful for invocation. However, it does not contrast with update or delete tools, nor does it state when this tool is preferred over alternatives. The guidance is present but not comparative.

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