GnistAI GnistAI
Log in

Password Generator

Secure password, passphrase, and PIN generator with strength estimation.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Utilities

Data source: Algorithmic (secrets module)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/password-generator/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-password-generator": {
      "url": "https://context.gnist.ai/mcp/password-generator/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/password-generator/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "check_password_strength", "arguments": {"password": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/password-generator/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/password-generator/check_password_strength?password=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/password-generator/check_password_strength",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "password": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc password-generator

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (5)

generate_password
Generate a cryptographically secure random password.
ParameterTypeRequiredDescription
lengthintegeroptionalPassword length (4-128). (default: 16)
uppercasebooleanoptionalInclude uppercase letters. (default: true)
lowercasebooleanoptionalInclude lowercase letters. (default: true)
digitsbooleanoptionalInclude digits. (default: true)
symbolsbooleanoptionalInclude symbols. (default: true)
exclude_ambiguousbooleanoptionalExclude ambiguous characters (0/O, 1/l/I, etc.). (default: false)
generate_passphrase
Generate a passphrase from random dictionary words.
ParameterTypeRequiredDescription
wordsintegeroptionalNumber of words (2-12). (default: 4)
separatorstringoptionalWord separator character. (default: "-")
capitalizebooleanoptionalCapitalize each word. (default: false)
generate_pin
Generate a cryptographically secure numeric PIN.
ParameterTypeRequiredDescription
lengthintegeroptionalPIN length (4-12). (default: 6)
check_password_strength
Estimate the strength of a given password.
ParameterTypeRequiredDescription
passwordstringrequiredPassword to evaluate.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related