Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

list_indexer_schema

Read-onlyIdempotent

Retrieve the full indexer schema from Prowlarr to see supported indexer types, fields, and configuration options before adding or editing an indexer.

Instructions

Read Indexer.

GET /api/v1/indexer/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

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds the HTTP method GET and endpoint, but no further behavioral context such as authentication needs, response characteristics, or side effects. No contradiction with annotations.

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: two short lines that state the resource and the exact endpoint. There is no filler or redundant content.

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 low complexity (zero parameters), the rich annotations, and the presence of an output schema, the description is nearly complete for invocation. The only small gap is that 'Read Indexer' is slightly ambiguous about what the schema represents, though the endpoint path clarifies it.

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?

This tool has zero parameters, so there is no parameter burden for the description to carry. The input schema is empty and 100% covered, so no parameter information is missing.

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 gives a clear verb and resource: 'Read Indexer' plus the endpoint 'GET /api/v1/indexer/schema'. It states what the tool does, but it does not explicitly differentiate it from siblings like list_indexer or get_indexer_by_id, so it misses the top score.

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 description provides no guidance on when to use this tool versus alternatives such as list_indexer or get_indexer_by_id. There is no when-to-use, when-not-to-use, or reference to any sibling tool.

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