Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

get_user_by_user_id_settings_password

Read-onlyIdempotent

Retrieve password settings page information for a user by providing their user ID.

Instructions

Get password page informatiom.

GET /api/v1/user/{userId}/settings/password

Args: user_id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the endpoint pattern but no additional behavioral context (e.g., what happens on missing user, response structure). It does not contradict annotations, but also does not enrich them beyond a minimal level.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loads the purpose, followed by the endpoint and args. However, it contains a typo ('informatiom') and is structurally minimal, reading more like a draft than a polished definition. It is efficient but lacks the polish of a well-structured description.

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?

Given the presence of an output schema and annotations covering read-only behavior, this simple getter is almost adequately described. The main gap is the absence of sibling differentiation and any explicit statement of when to use it. For a one-parameter tool, it is workable, but an agent would benefit from a hint about which settings page it targets.

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?

The description notes 'Args: user_id: Path parameter' which clarifies that user_id is a path parameter, a detail not present in the input schema. However, it does not explain the semantics of user_id beyond its self-evident name. With 0% schema coverage in the description, it partially compensates but could be more explicit.

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 'Get password page informatiom' which identifies a clear verb (get) and resource (password page information). It is specific enough to distinguish from sibling settings getters like get_user_by_user_id_settings_main. However, a typo and lack of elaboration on what 'password page information' includes keep it just below the top tier.

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 provided on when to use this tool versus alternatives such as get_user_by_user_id_settings_main or get_user_by_user_id_settings_permissions. The description only gives the endpoint and argument without any contextual advice, leaving the agent to infer usage from the name alone.

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