Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_user_import_from_plex

Idempotent

Import all Plex users into Overseerr or Jellyseerr to grant them access to request media, eliminating manual user setup.

Instructions

Import all users from Plex.

POST /api/v1/user/import-from-plex

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

B3.2/5.0
Behavior3/5

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

Annotations already provide idempotent and non-destructive hints scan. The description adds that the operation imports all Plex usersand instructs the agent to consult the schema for payload shape. However, it does not disclose whether the import creates or updates users, whether Plex must already be configured, or any auth requirements.

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 primary purpose, followed by the endpoint and a necessary schema-discovery instruction. There is no filler.

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?

Despite the output schema and annotations covering some aspects, the description lacks usage context, preconditions, and behavioral expectations. An agent still does not know when to choose this import over related Plex/user tools or what concrete side effects the import has.

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?

Schema description coverage is 0% and the only parameter is an open-ended body object. The description compensates by labeling body as the request payload and directing the agent to the matching GET or /schema endpoint for expected fields. This is workable but does not provide actual field semantics.

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 action ('Import all users from Plex') with a specific resource and source. It is distinguishable from the manual create_user and authentication-related Plex siblings, though it does not explicitly name exclusions.

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 alternatives, nor any prerequisites or conditions. The only directive is to read the GET or /schema endpoint, which is about payload discovery, not tool selection.

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