Skip to main content
Glama
severalnines

@severalnines/ccx-admin-mcp

Official
by severalnines

Unsuspend user

ccx_admin_unsuspend_user
Idempotent

Restore access for a suspended CCX user by removing the suspension, allowing them to log in and use their datastores again.

Instructions

Lift a suspension so the CCX user can log in and use their datastores again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesUser UUID (see ccx_admin_list_users)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

Annotations already provide idempotentHint=true and destructiveHint=false. The description adds the outcome ('user can log in and use their datastores again') but does not disclose additional behavioral details such as behavior for non-suspended users or error cases. This is adequate but not rich.

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?

A single sentence that front-loads the action, states the resource, and gives the practical consequence. Every word earns its place with no redundancy.

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 simple one-parameter tool with informative annotations and a fully documented schema, the description is complete enough for selection and invocation. It does not explain return values, but no output schema exists and the operation is straightforward.

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 100%, and the user_id parameter is already described as a UUID with a cross-reference to ccx_admin_list_users. The description adds no parameter-specific detail, so it meets the baseline but does not exceed it.

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

Purpose5/5

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

The description uses a specific verb ('Lift a suspension') and names the resource ('CCX user'), with a clear outcome: the user can log in and use datastores again. It is immediately distinguishable from the sibling ccx_admin_suspend_user.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is appropriate when a user is currently suspended and needs access restored. While it does not explicitly enumerate when not to use it, the context is clear and the opposite sibling tool is obvious.

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