← apished.com

INDIVIDUAL MCP TOOL

email_validate

Checks value is a single, bare RFC 5322 email address — syntax only, not a deliverability check.

apished.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://apished.com/mcp/v1/validate

No auth detected

Connect to this endpoint to inspect the live schema for email_validate and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests sending messages.

Parent server

apished.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.apished-validate]
url = "https://apished.com/mcp/v1/validate"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "apished-validate": {
      "type": "http",
      "url": "https://apished.com/mcp/v1/validate"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: apished-validate
Remote MCP URL: https://apished.com/mcp/v1/validate

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "apished-validate": {
      "url": "https://apished.com/mcp/v1/validate"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "apished-validate": {
      "type": "http",
      "url": "https://apished.com/mcp/v1/validate"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "apished-validate",
  "transport": "streamable-http",
  "url": "https://apished.com/mcp/v1/validate"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • jsonschema_validate — Validates document against schema (JSON Schema draft-07 or 2020-12).
  • regex_match — Tests input against pattern (Go's regexp package: RE2 syntax, not PCRE — no backreferences or lookaround; use inline flags like (?
  • url_validate — Checks value is a well-formed absolute URL (has both a scheme and a host) — syntax only, not a reachability check.