Skip to main content
Glama

radarr_search_movie

Trigger a search to download a movie already in your Radarr library by specifying its movie ID.

Instructions

Trigger a search to download a movie that's already in your library

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
movieIdYesMovie ID to search for

Implementation Reference

  • src/index.ts:451-463 (registration)
    Tool registration for radarr_search_movie, defining its name, description, and input schema expecting a movieId parameter.
      name: "radarr_search_movie",
      description: "Trigger a search to download a movie that's already in your library",
      inputSchema: {
        type: "object" as const,
        properties: {
          movieId: {
            type: "number",
            description: "Movie ID to search for",
          },
        },
        required: ["movieId"],
      },
    },
  • Handler for radarr_search_movie: extracts movieId from args, calls the RadarrClient.searchMovie method, and returns a success response with the command ID.
    case "radarr_search_movie": {
      if (!clients.radarr) throw new Error("Radarr not configured");
      const movieId = (args as { movieId: number }).movieId;
      const result = await clients.radarr.searchMovie(movieId);
      return {
        content: [{
          type: "text",
          text: JSON.stringify({
            success: true,
            message: `Search triggered for movie`,
            commandId: result.id,
          }, null, 2),
        }],
      };
    }
  • Helper method on RadarrClient that sends a POST to the /command API endpoint with name 'MoviesSearch' and the movieId to trigger a search/download for a movie already in the library.
    /**
     * Trigger a search for a movie
     */
    async searchMovie(movieId: number): Promise<{ id: number }> {
      return this['request']<{ id: number }>('/command', {
        method: 'POST',
        body: JSON.stringify({
          name: 'MoviesSearch',
          movieIds: [movieId],
        }),
      });
    }
Behavior2/5

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

No annotations are provided, so the description must carry the burden. It only says 'trigger a search to download' but does not disclose whether the operation is asynchronous, whether it blocks, or what happens if the movie is not in the library. Minimal behavioral context.

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?

One short sentence with no unnecessary words. Very efficient. However, it could be slightly expanded to include usage guidance without losing conciseness.

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?

Given the lack of output schema and annotations, the description is incomplete. It does not explain the outcome of the search (e.g., whether a download starts, if it monitors), prerequisites, or error conditions. Important context is missing.

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 parameter description is clear. The description adds context that the movie must already be in the library, but this is not essential for parameter semantics. Baseline 3 is appropriate.

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 verb 'trigger a search' and specifies the resource as 'a movie that's already in your library'. It distinguishes from adding a movie but could be more explicit about the requirement of the movie being pre-existing.

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?

No guidance on when to use this tool versus siblings like radarr_search or radarr_add_movie. The description does not provide when-not-to-use instructions or alternative recommendations.

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