Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_user_by_user_id_settings_main

Idempotent

Update general settings for a specific user in Overseerr or Jellyseerr. Supply the user ID and the settings body to apply changes directly.

Instructions

Update general settings for a user.

POST /api/v1/user/{userId}/settings/main

Args: user_id: Path parameter. 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
user_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already convey that this is a mutating, idempotent, non-destructive operation, so the description does not need to restate those traits. It adds the HTTP method/path and the important caveat that the body schema must be discovered via GET/schema. There is no contradiction with 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 compact and well-structured: purpose first, then endpoint, then args. It is easy to parse and contains no wasted sentences, though the Args section is somewhat redundant with the input schema.

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?

Combined with annotations and the output schema, the description covers safety and return shape, and the GET/schema instruction addresses the opaque body. Missing elements are explicit routing among sibling settings tools and any mention of permissions or side effects beyond what annotations already provide.

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%, so the description must compensate. It identifies user_id as a path parameter and body as the request payload, and directs the agent to the matching GET/schema endpoint to learn the expected fields. This is useful, though it leaves the actual body semantics external rather than enumerating them.

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 opening sentence 'Update general settings for a user' names a concrete action, resource, and scope, and the endpoint path reinforces the target. It is distinguishable from other per-user settings tools by 'general settings', though the generated name 'create_user_by_user_id_settings_main' conflicts with the described 'Update' action and no sibling is explicitly named.

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 description implies this tool is for updating a user's general settings and gives the practical instruction to read the matching GET or /schema endpoint first. However, it does not explicitly state when to choose this over siblings like create_settings_main or other per-user settings tools, nor does it provide any 'do not use' conditions.

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