Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

list_downloadclient_schema

Read-onlyIdempotent

Retrieve the Prowlarr download client schema to inspect all configuration fields and data structures required for managing download clients.

Instructions

Read DownloadClient.

GET /api/v1/downloadclient/schema

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

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 already declare `readOnlyHint=true`, `idempotentHint=true`, and `destructiveHint=false`. The description adds little beyond restating that it is a read operation via GET. It does not disclose what the returned schema looks like, whether it represents a JSON Schema, or any other behavioral trait beyond what the annotations already provide.

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, with no filler. The prose line 'Read DownloadClient' is short and the endpoint is given in a clear, structured way. For a zero-parameter tool, this is appropriately sized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With zero parameters, strong read-only annotations, and an output schema present, the tool is easy to call safely. However, the description lacks context about what the schema is used for and how it differs from listing or fetching actual DownloadClient resources. It is minimally complete but not genuinely helpful for tool selection.

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?

The tool has no parametersbjab, and the schema coverage is 100%. Since there are zero parameters, the description has no additional semantics to supply; the baseline of 4 applies.

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 uses 'Read DownloadClient' to indicate a read operation on a DownloadClient-related resource, and the included GET endpoint `/api/v1/downloadclient/schema` clarifies that this is specifically about the schema. It is not fully explicit in prose that this returns the schema rather than an actual DownloadClient, but the endpoint path provides enough distinction.

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?

There is no guidance on when to use this tool versus related tools such as `list_downloadclient` or `get_downloadclient_by_id`. The description does not mention the purpose of retrieving a schema before creating/updating a DownloadClient, nor does it exclude alternatives. Usage is only implied by the endpoint and sibling context.

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