MCP Rand
by turlockmike
generate_password
Generate a strong password with a mix of character types. WARNING: While this password is generated locally on your machine, it is recommended to use a dedicated password manager for generating and storing passwords securely.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
length | No | Password length (minimum 8, default 16) |
Input Schema (JSON Schema)
{
"properties": {
"length": {
"description": "Password length (minimum 8, default 16)",
"type": "number"
}
},
"type": "object"
}