Skip to main content
Glama
iadevhub
by iadevhub

create_user

Creates a new user in an iadev project by providing name, email, and password, with an optional profile (admin, editor, viewer).

Instructions

Criar um novo usuário no projeto.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nomeYesNome completo
emailYesEmail
senhaYesSenha
perfilNoPerfil: admin, editor, viewer (default: admin)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/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 behavioral burden and discloses almost nothing. It does not say whether an admin role is required, whether the email must be unique, what happens on conflict, or whether the created user is returned or invited by email. For a mutation tool with zero annotation coverage this is a substantial gap.

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

Conciseness4/5

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

A single short sentence, front-loaded with the verb and resource and free of filler. It is efficient, though the terseness comes partly from under-specification rather than disciplined editing.

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/mutation tool with no annotations and no output schema, an agent needs to know permission requirements, uniqueness/conflict behavior, and what the call returns. None of that is present, so the definition is not complete enough to invoke confidently in a real project.

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%, including the enum-like values for "perfil" (admin, editor, viewer) and its default, so the schema already documents all four parameters. The description adds no parameter meaning beyond that, which is the baseline-3 case when the schema does the heavy lifting.

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 a specific verb and resource ("Criar um novo usuário" — create a new user) and scopes it to a project, so the core action is unambiguous. It does not, however, distinguish this from siblings like update_user or list_users, which share the same user resource.

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?

There is no guidance on when to use this tool versus update_user, list_users, or any provisioning alternative, and no stated prerequisites (e.g. required role to create users). Usage must be inferred entirely from the name.

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