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
| Name | Type | Required | Description |
|---|---|---|---|
length | number | no | Password length (4-256, default 20). |
uppercase | boolean | no | Include A-Z (default true). |
lowercase | boolean | no | Include a-z (default true). |
digits | boolean | no | Include 0-9 (default true). |
symbols | boolean | no | Include punctuation (default true). |
exclude_ambiguous | boolean | no | Exclude look-alikes (0/O, 1/l/I) (default false). |
count | number | no | How 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.