Skip to main content
Glama
williamamed

mcp-polizei

by williamamed

Crear usuario

create_user

Create a new user and assign it to a specified scope within the Polisafe admin system.

Instructions

Crea un usuario y lo agrega al scope indicado.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
extraNoCampos adicionales del modelo de usuario
stateNoEstado del usuario (0 inactivo, 1 activo)
idScopeYesID del scope al que se agrega el usuario
profileNoPerfil del usuario (email, picture, etc.)
fullnameNoNombre completo
passwordNoContraseña inicial
usernameYesNombre de usuario

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?

With no annotations provided, the description carries the burden of disclosing behavior. It does state the core side effects—creating a user and associating it with a scope—but it does not mention edge cases, potential errors, required permissions, or whether the operation is idempotent.

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?

The description is a single, concise sentence that directly communicates the essential action. There is no unnecessary detail or ambiguity in the wording.

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?

Given the tool's moderate complexity and the absence of an output schema, the description is mostly complete. It clearly explains what the tool does, and the parameter descriptions fill in the remaining details, though it does not mention what the tool returns or any failure modes.

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?

The input schema already describes all 7 parameters with 100% coverage. The description itself adds no additional parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate.

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 clearly states the tool's purpose: it creates a user and adds that user to the indicated scope. The verb 'crea' and the resource 'usuario' are specific, and the statement distinguishes this from sibling tools like add_user_to_scope, which would handle an existing user.

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?

The description does not provide any guidance on when to use this tool versus alternatives. It does not mention conditions, prerequisites, or scenarios where create_user is preferable to other user-management tools.

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