Skip to main content
Glama
rsp2k
by rsp2k

user_create

Provision new user accounts for Vultr by specifying email, name, password, and access permissions. Configure API-only service users and assign ACLs for controlled management.

Instructions

Create a new user.

Args: email: User's email address first_name: User's first name last_name: User's last name password: User's password ctx: FastMCP context for resource change notifications ctx: FastMCP context for resource change notifications api_enabled: Enable API access for this user service_user: Create as service user (API-only, no portal login) acls: List of permissions to grant. Available permissions: - manage_users: Manage other users - subscriptions_view: View subscriptions - subscriptions: Manage subscriptions - provisioning: Provision resources - billing: Access billing information - support: Access support tickets - abuse: Handle abuse reports - dns: Manage DNS - upgrade: Upgrade plans - objstore: Manage object storage - loadbalancer: Manage load balancers - firewall: Manage firewalls - alerts: Manage alerts

Returns: Created user information, including API key if service_user is True

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
aclsNo
emailYes
passwordYes
last_nameYes
first_nameYes
api_enabledNo
service_userNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does disclose the return value and the API-only nature of service_user, but it omits important behavioral details like email uniqueness, password handling, required permissions, or side effects beyond creation.

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 structured and front-loaded with 'Create a new user', and the ACL list is useful. However, the duplicate 'ctx' line and the presence of a non-schema ctx parameter make it less clean than it could be.

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 create operation with no annotations and 7 parameters, the description lacks important context such as uniqueness constraints, required parent account context, permission prerequisites, or how this relates to sibling setup tools. The return line is useful, but the overall context is incomplete.

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 is the primary source of parameter meaning. It explains service_user, api_enabled, and provides a full list of acceptable ACL values. The duplicate 'ctx' line and the inclusion of ctx as a parameter when it is absent from the schema slightly reduce the value.

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 clearly states 'Create a new user' with a specific verb and resource. It does not explicitly differentiate from siblings like user_setup_standard_user or user_setup_service_user, but the create/update/delete family is generally distinguishable.

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 alternatives such as user_setup_standard_user or user_setup_service_user. The service_user parameter description hints at one use case, but there is no when-to-use or when-not-to-use guidance.

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