@mukundakatta/bcrypt-mcp
v0.1.0
Published
MCP server: hash and verify passwords with bcrypt — adjustable cost factor.
Downloads
40
Maintainers
Readme
bcrypt-mcp
MCP server: hash and verify passwords with bcrypt. Backed by bcryptjs so
there's no native build step.
Tools
hash
{ "password": "correct horse battery staple", "cost": 10 }→ { "hash": "$2a$10$..." }
cost is the bcrypt work factor: 4-15, default 10. Each +1 doubles the
compute cost.
verify
{ "password": "correct horse battery staple", "hash": "$2a$10$..." }→ { "match": true }
Configure
{ "mcpServers": { "bcrypt": { "command": "npx", "args": ["-y", "@mukundakatta/bcrypt-mcp"] } } }License
MIT.
