Skip to main content
Glama
rollecode

Prowlarr MCP server

by rollecode

delete_appprofile_by_id

DestructiveIdempotent

Delete an application profile in Prowlarr by providing its ID. Use this to remove unwanted profiles and clean up your setup.

Instructions

Delete AppProfile.

DELETE /api/v1/appprofile/{id}

Args: id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

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 supply destructiveHint=true and idempotentHint=true. The description adds only the HTTP method and path, which restates the delete action but does not disclose irreversibility, authorization needs, side effects, or error behavior 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the purpose. Every line earns its place: the action, the endpoint, and the parameter location. There is no filler or redundancy.

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

Completeness2/5

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

For a destructive operation, the description is too sparse. It omits what deletion entails, whether it is permanent, what happens on invalid IDs, and any prerequisite conditions. Output schema covers return values, but behavioral context is missing.

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

Parameters3/5

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

With schema description coverage at 0%, the description's 'id: Path parameter' adds the location detail that the schema lacks. However, it does not explain what the id refers to or any constraints beyond the schema's integer type, so it only partially compensates.

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

Purpose5/5

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

The description states the verb and resource directly: 'Delete AppProfile.' The HTTP path `/api/v1/appprofile/{id}` clarifies it operates on a specific AppProfile by ID, which distinguishes it from get/update and other delete_*_by_id siblings.

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?

No usage guidance is provided. The description does not explain when to use this tool versus get_appprofile_by_id or update_appprofile_by_id, nor does it mention prerequisites, alternatives, or consequences of deletion.

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