Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

list_appprofile

Read-onlyIdempotent

Retrieve application profiles from Prowlarr to view configured settings for connected applications.

Instructions

Read AppProfile.

GET /api/v1/appprofile

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

C2.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description adds no real behavioral transparency beyond the GET method and path. It does not mention pagination, response shape, auth expectations, or scope semantics, and the readOnly annotation carries the burden instead.

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 definition is very short and front-loaded: 'Read AppProfile' followed by the GET endpoint. There is no filler or repetition, though the main sentence is terse enough to hurt clarity; structure itself is clean.

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?

For a zero-parameter read with strong annotations and an output schema, the definition is nearly sufficient. The material gap is that it never states 'list all AppProfiles' or explains the distinction from get_appprofile_by_id, so an agent may not know which read tool fits the request.

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 takes zero parameters and has 100% schema description coverage, so the schema leaves nothing undocumented. The description's mention of the endpoint appropriately confirms a parameterless collection read, meriting the baseline for a no-parameter tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a read operation against AppProfile via GET, so the resource and verb are present. However, 'Read AppProfile' is ambiguous next to get_appprofile_by_id; it doesn't explicitly say this lists all profiles, and the endpoint path is the only real disambiguator.

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 get_appprofile_by_id, list_appprofile_schema, or the create/update/delete siblings. The description neither names alternatives nor provides selection criteria, so the agent must infer usage from the tool name and endpoint.

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