generate_password

Pack: passwordgen · Endpoint: https://gateway.pipeworx.io/passwordgen/mcp

Generate cryptographically-random password(s) (keyless, offline, CSPRNG). Control the character sets and length; returns the password(s) and their entropy in bits.

Parameters

NameTypeRequiredDescription
lengthnumbernoPassword length (4-256, default 20).
uppercasebooleannoInclude A-Z (default true).
lowercasebooleannoInclude a-z (default true).
digitsbooleannoInclude 0-9 (default true).
symbolsbooleannoInclude punctuation (default true).
exclude_ambiguousbooleannoExclude look-alikes (0/O, 1/l/I) (default false).
countnumbernoHow many to generate (1-50, default 1).

Example call

curl -X POST https://gateway.pipeworx.io/passwordgen/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"generate_password","arguments":{}}}'

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "passwordgen": {
      "url": "https://gateway.pipeworx.io/passwordgen/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 2, 2026