Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

create_command

Idempotent

Create Prowlarr API commands to trigger operations such as searches, application syncs, and indexer updates. Use this action to execute a command endpoint directly with a custom payload.

Instructions

Create Command.

POST /api/v1/command

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

B3.2/5.0
Behavior2/5

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

Annotations (readOnlyHint=false, idempotentHint=true, destructiveHint=false) already reveal this is a non-destructive write that is safe to retry. The description adds almost no behavioral context beyond the word 'Create' and the pointer to the schema endpoint — it never mentions idempotency, what happens on success, or side effects. No contradiction, but the description carries little weight beyond the annotations.

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 compact — verb, endpoint, one parameter, and a lookup instruction — with the purpose front-loaded. Every sentence earns its place and there is no filler. Slightly more could be said about the resource, but the structure is efficient.

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 the output schema exists (so return values need no explanation) and annotations carry the safety/idempotency profile, the description covers the essentials: the endpoint, the single argument, and where to find field definitions. The main gap is not explaining the nature of the Command resource, but for an open-bodied create tool the scaffolding fills most needs.

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

Parameters4/5

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

Schema coverage is 0% and the body param is an arbitrary object with additionalProperties:true — useless on its own. The description compensates by naming the parameter ('body: Request payload') and directing the agent to the GET/schema endpoints to discover the expected fields. This is effective guidance for an open-ended payload, though it delegates rather than enumerates the fields.

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 states a clear verb-resource pair ('Create Command') paired with the explicit endpoint 'POST /api/v1/command'. Among the many sibling create_* tools (create_applications, create_indexer, etc.), naming the 'Command' resource differentiates it, though it never explains what a Command is or what creating one accomplishes.

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 only usage guidance is a prerequisite hint — 'Read the matching GET or the /schema endpoint first to see the fields this resource expects.' There is no explicit when-to-use guidance, no exclusions, and no reference to alternatives such as list_command or get_command_by_id. An agent gets a hint about preparation but nothing about selection or sequencing.

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