Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

list_indexerstats

Read-onlyIdempotent

Retrieve indexer statistics filtered by date range, indexer, protocol, or tag to analyze performance and usage.

Instructions

Read IndexerStats.

GET /api/v1/indexerstats

Args: start_date: Query parameter. end_date: Query parameter. indexers: Query parameter. protocols: Query parameter. tags: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNo
end_dateNo
indexersNo
protocolsNo
start_dateNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the GET method and clarifies that all arguments are query parameters, which is modest extra behavioral context. It does not contradict 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 short and front-loaded with the purpose. The parameter list is structured and each line adds the query-parameter location, though it somewhat duplicates schema property names. Overall it is appropriately sized with no fluff.

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?

The output schema exists, so return values need not be described. However, the description omits useful operational details such as date formats, filter behavior, and response characteristics beyond the schema. It is adequate for a simple read-only tool but has clear gaps in guidance.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for missing parameter documentation. It only repeats the parameter names and labels each as a 'Query parameter,' without explaining formats, allowed values, or how filters are combined. This adds minimal semantic value beyond the schema.

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 and resource: 'Read IndexerStats.' It identifies the resource and operation, and the endpoint reinforces the intent. However, it does not differentiate this from siblings like list_indexerstatus or list_indexer, 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 gives no guidance on when to use this tool versus alternatives. It simply shows the endpoint and parameter list, with no context about filtering, use cases, or exclusions, leaving the agent without routing information.

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