- Home
- MCP servers
- MCP Password Generator
MCP Password Generator
- python
0
GitHub Stars
python
Language
2 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You run a lightweight MCP HTTP server that generates secure, memorable passwords and evaluates their strength. It’s quick to integrate with your tools and provides practical options for both random and memorable passphrases.
How to use
Connect your MCP client to the server to generate passwords on demand. Use the two built‑in endpoints to either create a random password or assemble a memorable passphrase from a set of words. The server will include a strength score with each generated password so you know how hard it is to crack.
How to install
Prerequisites: Python 3.10+ and pip.
pip install -r requirements.txt
python server.py
Additional content
Configuration and usage details are focused on practical deployment and client integration. The server exposes two main tools you can use from an MCP client to generate passwords.
Security note: strength evaluation uses zxcvbn to estimate robustness and includes a Strength indicator in responses.
Available tools
generate_random_password
Generates a random password with configurable length, character sets, and optional emojis for added entropy and playfulness.
generate_memorable_password
Creates a passphrase consisting of multiple words separated by a chosen delimiter, with optional capitalization and digits per word.