Skip to main content
Glama

radarr_add_movie

Add a movie to Radarr using TMDB ID, title, quality profile, and root folder from preliminary searches.

Instructions

Add a movie to Radarr. Use radarr_search first to find the tmdbId, and radarr_get_root_folders / radarr_get_quality_profiles to get valid values. Use radarr_get_tags to get valid tag IDs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tmdbIdYesTMDB ID from radarr_search results
titleYesMovie title
qualityProfileIdYesQuality profile ID from radarr_get_quality_profiles
rootFolderPathYesRoot folder path from radarr_get_root_folders
monitoredNoWhether to monitor the movie (default: true)
minimumAvailabilityNoWhen to consider the movie available (default: announced)
tagsNoArray of tag IDs from radarr_get_tags (optional)

Implementation Reference

  • src/index.ts:478-517 (registration)
    Tool registration/schema definition for radarr_add_movie. Defines the tool name, description, and input schema with tmdbId, title, qualityProfileId, rootFolderPath, monitored, minimumAvailability, and tags parameters.
    {
      name: "radarr_add_movie",
      description: "Add a movie to Radarr. Use radarr_search first to find the tmdbId, and radarr_get_root_folders / radarr_get_quality_profiles to get valid values. Use radarr_get_tags to get valid tag IDs.",
      inputSchema: {
        type: "object" as const,
        properties: {
          tmdbId: {
            type: "number",
            description: "TMDB ID from radarr_search results",
          },
          title: {
            type: "string",
            description: "Movie title",
          },
          qualityProfileId: {
            type: "number",
            description: "Quality profile ID from radarr_get_quality_profiles",
          },
          rootFolderPath: {
            type: "string",
            description: "Root folder path from radarr_get_root_folders",
          },
          monitored: {
            type: "boolean",
            description: "Whether to monitor the movie (default: true)",
          },
          minimumAvailability: {
            type: "string",
            enum: ["announced", "inCinemas", "released", "tba"],
            description: "When to consider the movie available (default: announced)",
          },
          tags: {
            type: "array",
            items: { type: "number" },
            description: "Array of tag IDs from radarr_get_tags (optional)",
          },
        },
        required: ["tmdbId", "title", "qualityProfileId", "rootFolderPath"],
      },
    },
  • Handler for radarr_add_movie. Extracts arguments (tmdbId, title, qualityProfileId, rootFolderPath, monitored, minimumAvailability, tags) and calls clients.radarr.addMovie(), then returns success response with added movie details.
    case "radarr_add_movie": {
      if (!clients.radarr) throw new Error("Radarr not configured");
      const { tmdbId, title, qualityProfileId, rootFolderPath, monitored, minimumAvailability, tags } = args as {
        tmdbId: number; title: string; qualityProfileId: number; rootFolderPath: string;
        monitored?: boolean; minimumAvailability?: string; tags?: number[];
      };
      const added = await clients.radarr.addMovie({
        tmdbId, title, qualityProfileId, rootFolderPath, monitored, minimumAvailability, tags: tags ?? [],
      });
      return {
        content: [{
          type: "text",
          text: JSON.stringify({
            success: true,
            message: `Added "${added.title}" (${added.year}) to Radarr`,
            id: added.id,
            path: added.path,
            monitored: added.monitored,
          }, null, 2),
        }],
      };
    }
  • RadarrClient.addMovie() helper method. Makes a POST request to /movie API endpoint, defaulting monitored to true and setting searchForMovie: true in addOptions.
    async addMovie(movie: Partial<Movie> & { tmdbId: number; rootFolderPath: string; qualityProfileId: number }): Promise<Movie> {
      return this['request']<Movie>('/movie', {
        method: 'POST',
        body: JSON.stringify({
          ...movie,
          monitored: movie.monitored ?? true,
          addOptions: {
            searchForMovie: true,
          },
        }),
      });
    }
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 burden of behavioral disclosure. It only states 'Add a movie' without revealing side effects (e.g., triggers download), idempotency, or error behavior. Critical information is missing.

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 three sentences long: one for purpose, two for usage guidance. No redundant information, well-structured.

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?

The tool has 7 parameters, no output schema, and no annotations. The description fails to mention what the tool returns, error handling, or idempotency. It only covers prerequisites, leaving the agent uninformed about the outcome.

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%, so the baseline is 3. The description adds some value by grouping prerequisite parameters, but it does not provide additional meaning beyond what the schema already states (e.g., 'TMDB ID from radarr_search results' is already in schema).

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 starts with 'Add a movie to Radarr,' which clearly states the verb (add) and resource (movie). It distinguishes from sibling tools like radarr_search_movie and radarr_get_movies by specifying the action is creation.

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 explicitly instructs to use prerequisite tools (radarr_search, radarr_get_root_folders, radarr_get_quality_profiles, radarr_get_tags) before invoking this tool. This provides clear context for when to use it, though it does not explicitly state when not to use it.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aplaceforallmystuff/mcp-arr'

If you have feedback or need assistance with the MCP directory API, please join our Discord server