Adds password security analysis directly into Claude. You get entropy calculations, crack time estimates, and checks against common password databases. The server runs remotely at password-strength.api.klymax402.com, so there's no local setup. Useful when you're building authentication flows, reviewing security policies, or need to validate password strength requirements in real time during a conversation. The implementation is straightforward: pass a password string, get back numerical scores and time estimates. The x402 suffix suggests this is part of a larger API ecosystem, though the GitHub repo itself is fairly minimal on documentation.
Public tool metadata for what this MCP can expose to an agent.
security_check_passwordUse this when you need to evaluate password strength or security. Returns a score 0-100, strength rating (weak/fair/strong/excellent), estimated crack time, entropy bits, and improvement suggestions.1 paramsUse this when you need to evaluate password strength or security. Returns a score 0-100, strength rating (weak/fair/strong/excellent), estimated crack time, entropy bits, and improvement suggestions.
passwordstringPassword strength analyzer with entropy calculation and crack time estimation. Pay-per-call via x402 (USDC on Base L2) -- no API key, no signup, no rate-limit wall.
Part of the klymax402 marketplace -- 100 x402 micropayment APIs for AI agents, one wallet, USDC on Base.
Add to your MCP client config (Claude Desktop, Cursor, ElizaOS, etc.):
{
"mcpServers": {
"password-strength": {
"url": "https://password-strength.api.klymax402.com/mcp"
}
}
}
curl -X POST "https://password-strength.api.klymax402.com/api/check" \
-H "Content-Type: application/json" \
-d '{"password":"..."}'
# -> 402 Payment Required, with an x402 payment challenge in the response body
Any x402-aware client (@x402/fetch, x402-agent-tools, ATXP) handles the 402 -> sign -> retry cycle automatically.
| Tool | Method | Path | Price | Description |
|---|---|---|---|---|
security_check_password | POST | /api/check | $0.001 | Check password strength with entropy and crack time |
security_check_passwordUse this when you need to evaluate password strength or security. Returns a score 0-100, strength rating (weak/fair/strong/excellent), estimated crack time, entropy bits, and improvement suggestions. Checks against top 1000 common passwords. Do NOT use for hash generation — use crypto_generate_hash. Do NOT use for input validation — use data_validate_json.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
password | string | yes | The password to analyze |
eip155:8453)100 x402 micropayment APIs for AI agents -- one wallet, USDC on Base, zero signup.
MIT