Regex/Email/URL Validator
com.apished/regex-email-url-validatorRegex matching, email/URL format validation, and JSON Schema validation.
Tools · 4
Checks value is a single, bare RFC 5322 email address — syntax only, not a deliverability check. user@localhost is valid (no TLD required). "Name <email>" display syntax is rejected.
Validates document against schema (JSON Schema draft-07 or 2020-12). Reports one specific violation per call, not an aggregated list.
Tests input against pattern (Go's regexp package: RE2 syntax, not PCRE — no backreferences or lookaround; use inline flags like (?i) for case-insensitive matching). Returns the full match and captured…
Checks value is a well-formed absolute URL (has both a scheme and a host) — syntax only, not a reachability check.
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"regex/email/url_validator": {
"url": "https://apished.com/mcp/v1/validate",
"transport": "streamable-http"
}
}
}