Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_user_by_user_id_settings_notifications

Idempotent

Update notification preferences for a specific user by user ID. Configure alerts for requests, issues, and media updates.

Instructions

Update notification settings for a user.

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

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

A3.5/5.0
Behavior3/5

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

Annotations already convey that this is a non-read, non-destructive, idempotent operation. The description adds the POST route and the operational requirement to inspect the GET/schema endpoint first, but does not discuss merge versus replace behavior, permissions, or other side effects. This adds some value without contradicting 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 short and well-ordered: one-line purpose, route, then args. There is no filler, and the added instruction about reading GET/schema earns its place by addressing the opaque body parameter.

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 two-parameter tool with an open body, the description provides the path, arg roles, and a discovery mechanism for the payload fields; the output schema covers return expectations. It is slightly incomplete only in not addressing when to choose this over the many related notification-setting tools.

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?

Schema description coverage is 0%, so the description must compensate. It clarifies that user_id is a path parameter and body is the request payload, and it tells the agent to consult the matching GET or /schema endpoint because the body is open (additionalProperties). This is practical and sufficient for invoking the tool, even though actual fields are not enumerated.

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?

Description opens with 'Update notification settings for a user', a specific verb and resource. The 'for a user' scope distinguishes it from the many global settings_notifications siblings, though it never names an alternative explicitly. The HTTP method and path reinforce what operation is being performed.

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 guidance is given on when to use this tool versus the create_settings_notifications_* or other user settings siblings. The only instruction is to read the matching GET or /schema endpoint before supplying the body, which is within-tool preparation rather than alternative 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