Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_user_by_user_id_settings_permissions

Idempotent

Update a user's permission settings by providing their user ID and a request body with the desired permissions. Streamline access control for Overseerr or Jellyseerr users.

Instructions

Update permission settings for a user.

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

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.3/5.0
Behavior2/5

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

Annotations already indicate readOnly=false, idempotent=true, destructive=false, and the description does not add substantive behavioral detail such as whether permissions are replaced or merged, authorization requirements, or side effects. The only extra context is the instruction to fetch the schema/GET first, which is procedural rather than behavioral.

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 well organized: one-sentence purpose, endpoint, then categorized args. Every included sentence adds useful information, and the reference to the GET/schema endpoint is a necessary pointer for the opaque body.

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?

The endpoint, annotations, output schema, and the pointer to the GET/schema endpoint provide enough for a minimally viable call. It is not fully complete because it leaves the body semantics, permissions model, and update behavior to be discovered, and the create/update naming conflict adds uncertainty.

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 0% schema description coverage, the description must compensate, and it does partially: it identifies user_id as a path parameter and body as the request payload, and points to the matching GET/schema for field definitions. It does not enumerate the expected permission fields, so the agent still depends on an external lookup for the actual body shape.

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 specific action and resource ('Update permission settings for a user') and gives the exact endpoint, which distinguishes it from sibling settings tools like get_user_by_user_id_settings_permissions. However, the tool name starts with create_ while the description says Update, and the method is POST, leaving mild verb ambiguity.

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?

It advises reading 'the matching GET or the /schema endpoint first' before constructing the body, which is a useful precondition. It does not explicitly state when to choose this tool over the GET counterpart or other user-settings mutation tools, leaving the selection mostly implied by the purpose.

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