# Password Strength — MCP tool `findutils:password_strength`

Estimate password strength using character-class entropy. Returns a 0–4 score, a descriptive label, and actionable feedback. NOT a substitute for a full dictionary check (zxcvbn) — this is fast and offline-safe.

- Category: security
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/password-strength/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/password-strength/
- Same tool on the other surface: https://findutils.com/api/password-strength/

## Connect

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "password_strength",
      "arguments": {
        "password": "abc123"
      }
    }
  }'
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `password` | string | yes | The password to evaluate. |

Example arguments (verified):

```json
{
  "password": "abc123"
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/password-strength/execute \
  -H "Content-Type: application/json" \
  -d '{
    "password": "abc123"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/password-strength
```

Full REST reference: https://findutils.com/api/password-strength/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
