Skip to main content
Glama

unsuspend user

unsuspend_user
Idempotent

Reactivate a suspended user account and its services, optionally restarting them to apply changes.

Instructions

Unsuspend a user and their services. Executes verified command v-unsuspend-user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
userYes
restartNoyes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataNo
errorNo
commandYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

The description adds that the operation affects 'their services' and that it 'Executes verified command v-unsuspend-user'. Annotations already communicate non-read-only, non-destructive, and idempotent behavior, so the description contributes some context but does not disclose side effects, such as what the restart parameter does to services.

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?

Two short sentences with no filler. The core purpose is front-loaded, and the implementation detail about the verified command is brief and additive.

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?

For a simple two-parameter operation with annotations and an output schema, the description is mostly adequate, but it does not explain restart's role or connect this tool to the suspend_user lifecycle. An agent could call it correctly, yet some behavioral context must be inferred.

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 0%, and the description only echoes the word 'user' without explaining parameter semantics. The restart parameter, including its yes/no default and effect on services, is left entirely to the schema, which is a meaningful gap for a mutating tool.

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 states a specific action ('Unsuspend') on a specific resource ('a user and their services'), which clearly distinguishes it from siblings like suspend_user, list_users, and delete_user. The scope is explicit and not a tautology of the title.

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?

The verb 'unsuspend' implies this is used to reverse a suspension, and it is implicitly contrasted with the sibling suspend_user. However, there is no explicit guidance about when to use it, prerequisites such as the user being currently suspended, or why to prefer it over related tools.

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