Skip to main content
Glama
afialho

MCP Dev Tools

by afialho

password_utils

Generate, analyze, validate, and check passwords for breaches, or build passphrases. Set length, character types, and word counts to match your security needs.

Instructions

Utilitários para senhas: gerar, analisar segurança, validar e criar frases-senha

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tipoNoTipo de senha: forte (completa), media (sem símbolos), numerica (PIN), personalizadaforte
senhasNoLista de senhas para analisar/validar (não usado em gerar/frase)
operacaoYesOperação: gerar senhas, analisar segurança, validar múltiplas, gerar frase-senha ou verificar vazamentos
separadorNoSeparador entre palavras na frase-senha-
quantidadeNoQuantidade de senhas/frases para gerar
comprimentoNoComprimento da senha (4-128 caracteres)
palavras_fraseNoNúmero de palavras na frase-senha (3-8)
incluir_numerosNoIncluir números (apenas para tipo personalizada)
excluir_ambiguosNoExcluir caracteres ambíguos (0, O, l, I, etc.)
incluir_simbolosNoIncluir símbolos (apenas para tipo personalizada)
incluir_maiusculasNoIncluir letras maiúsculas (apenas para tipo personalizada)
incluir_minusculasNoIncluir letras minúsculas (apenas para tipo personalizada)
incluir_numeros_fraseNoIncluir números nas frases-senha para torná-las mais seguras
incluir_simbolos_fraseNoIncluir símbolos nas frases-senha para torná-las mais seguras

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.0

TDQS

C2.4/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It fails to mention any characteristic traits: it doesn't say whether operations are pure, whether they make network requests (important for 'verificar vazamentos'), whether they have side effects, or what permissions are required. The lack of annotations combined with a boilerplate description leaves the agent with no behavioral context.

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?

The description is a single, compact sentence that front-loads the core purpose. It is efficient and avoids unnecessary words, though it is so terse that it may be perceived as under-specified rather than concise.

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 tool with 14 parameters, multiple operations (including a potentially network-dependent 'verificar' leak check), and no annotations, the description is insufficient. It does not explain operation scoping, requirements, or behavioral differences between modes, and provides no output info despite lacking an output schema.

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%, so the schema already fully documents all 14 parameters. The description adds no parameter-specific information beyond what is already in the schema; it only lists the operations, which are also already enumerated in the schema. Baseline 3 is appropriate when the schema does all the work.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description lists verbs (gerar, analisar, validar, criar frases-senha) but is essentially a restatement of the enum values found in the input schema's 'operacao' parameter. It does not distinguish this tool from any sibling or specify its scope beyond the generic function of 'password utilities'.

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 explicit when-to-use or when-not-to-use guidance is given. The description merely lists the possible operations, leaving it to the agent to infer appropriate contexts from the schema alone. No alternatives or exclusions are mentioned.

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