Skip to main content
Glama

users_enable_user

Enables a Remnawave panel user by ID through the API. Requires userId and confirm to apply the enable action; without confirm, returns a preview.

Instructions

POST /api/users/{userId}/actions/enable Enable user Tags: Users Controller

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userIdYes
confirmNoПодтверждение выполнения не-GET операции. Без confirm:true возвращается превью запроса (метод, URL, тело) и запрос не отправляется (см. MCP_CONFIRM).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full disclosure burden for a state-changing operation, yet it says nothing about permissions, side effects on the user's subscription/traffic, or idempotency. The confirm-gate behavior is documented only in the schema, not in the description.

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?

It is short and front-loads the method and path, but the trailing 'Tags: Users Controller' line is boilerplate that earns no place, and the substantive body is essentially a restatement of the tool name.

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?

For a mutation tool with no annotations and no output schema, the description omits nearly everything an agent needs: prerequisites, expected result, and the confirm/confirmation flow that governs whether the request is actually sent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50%: the confirm parameter is well documented inside the schema, but userId has no description in either place. The description text adds no meaning to either parameter, so it fails to compensate for the coverage gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the HTTP method and path (POST /api/users/{userId}/actions/enable) and the phrase 'Enable user', which names the verb and resource. However, 'Enable user' largely restates the tool name users_enable_user and there is no differentiation from the obvious counterpart users_disable_user or the bulk/bulk-status variants. Purpose is understandable but adds little beyond the identifier.

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 on when to use this single-user enable versus users_bulk_actions_bulk_update_users, users_disable_user, or any prerequisite that the user must exist. The only clue is the endpoint path itself, which is implied rather than explained.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools