Password Validator
Validate password strength and check against common security requirements
API Documentation
Request Endpoint
POST /en/api/tools/password-validator
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| password | text | Yes | - |
| minLength | number | No | - |
| requireUppercase | checkbox | No | - |
| requireLowercase | checkbox | No | - |
| requireNumbers | checkbox | No | - |
| requireSymbols | checkbox | No | - |
Response Format
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}
Text:
Text
AI MCP Documentation
Add this tool to your MCP server configuration:
{
"mcpServers": {
"elysiatools-password-validator": {
"name": "password-validator",
"description": "Validate password strength and check against common security requirements",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=password-validator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
If you encounter any issues, please contact us at [email protected]