Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_plex_sync

Idempotent

Start a full Plex library scan to sync media availability with Overseerr or Jellyseerr, resolving stale content issues.

Instructions

Start full Plex library scan.

POST /api/v1/settings/plex/sync

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare the operation is non-read-only, idempotent, and non-destructive. The description adds the key behavioral fact that it triggers a full library scan and warns the agent to consult GET/schema first. It does not address edge cases like an already-running scan, but annotations lower the burden.

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?

Four short lines with no filler: the action is front-loaded, the endpoint is included, and the parameter guidance is the minimum needed. Every sentence earns its place.

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?

For a single-body-parameter trigger endpoint with an output schema, the description is nearly complete. It names the action, gives the endpoint, and explains how to discover the payload shape. It could add one sentence about side effects or prerequisites such as Plex being configured, but nothing critical is missing for invocation.

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 sole parameter is a generic open object with 0% schema coverage. The description compensates by identifying body as the request payload and, more importantly, directing the agent to the matching GET or /schema endpoint for the expected fields. It does not enumerate fields, but the redirect is the actionable semantic information.

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 opens with a specific verb and resource: 'Start full Plex library scan.' This clearly distinguishes the tool as a trigger action, unlike siblings such as list_settings_plex_sync (which lists sync state) or create_settings_plex (which configures Plex).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied by 'Start full Plex library scan,' and the instruction to read the matching GET or /schema endpoint provides a useful prerequisite. However, it does not explicitly state when to prefer this over sibling settings endpoints or mention when not to use it.

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