Skip to main content
Glama
leomc06

mcp-teste-llm2

by leomc06

Buscar usuários por nome

buscar_usuarios_por_nome

Find ticket-system operators by searching users whose name or login contains the given text, so you can locate the right account.

Instructions

Busca usuários (operadores) do sistema de tickets cujo nome ou login contenham o texto informado.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nomeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It usefully discloses that the search matches name or login and uses a contains-style comparison, but it omits result limits, pagination, case sensitivity, and whether any permissions are required.

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, front-loaded sentence with no filler. It states the action, target entity, and matching behavior efficiently.

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 one-parameter search tool, the description is minimally adequate, but it lacks guidance on choosing between this and listar_usuarios_tickets and does not describe the return value or result shape, which matters because no output schema is provided.

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 must compensate. It does so by explaining that the single parameter 'nome' matches either name or login and is treated as contained text, which adds meaningful semantics beyond the bare schema.

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 (Busca) and resource (usuários/operadores do sistema de tickets), and clarifies the search criterion (nome ou login contendo o texto informado). It distinguishes itself from a simple list of users, though it does not explicitly name the sibling tool listar_usuarios_tickets.

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 explicit guidance on when to use this tool versus alternatives such as listar_usuarios_tickets or other search tools. The purpose implies a text search, but no conditions, exclusions, or prerequisite context are provided.

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