Skip to main content
Glama
mattmaas

Radarr MCP Server

by mattmaas

radarr_get_movie_by_tmdb

Retrieve Radarr movie details by TMDB ID when the Radarr ID is unknown.

Instructions

Get movie information by TMDB ID. Useful when you know the TMDB ID but not the Radarr ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tmdbIdYesTMDB ID (e.g., 603 for The Matrix)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It discloses nothing about how failures are handled (e.g., unknown TMDB ID), what fields come back, or auth/rate-limit behavior; the only behavioral hint is the read-only connotation of 'Get', which is already implied by the name.

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?

Two short sentences, zero filler, with the core action front-loaded and the routing hint second. Nothing could be cut without losing information.

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-parameter read tool with no output schema, the description covers purpose and selection context well. The remaining gap is what 'movie information' actually contains and how errors surface, but that is minor for a lookup of this simplicity.

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?

Schema coverage is 100% and the schema itself supplies the format and an example ('603 for The Matrix'), so the description adds no parameter-level detail. Baseline 3 applies when the schema does the heavy lifting.

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?

States a specific verb and resource ('Get movie information') plus the exact lookup key (TMDB ID), which cleanly separates it from the sibling radarr_get_movie that takes a Radarr ID.

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?

Explicitly says when to reach for it: 'Useful when you know the TMDB ID but not the Radarr ID.' That implies the alternative (radarr_get_movie by Radarr ID) without naming it directly, so it falls just short of a fully explicit routing rule.

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