# Verifi.Email — how to use (mcp.ai)

Connect your Verifi.Email account and use 3 tools for email straight from your AI agent. Connect with your own API key. Verifi.Email validates email addresses and checks domain email-security configuration through its public API.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_verifi_email?ms=1787291340000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `verifi_email_check_domain_health`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/verifi_email`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/verifi_email/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/verifi_email/check/domain/health` — Check a bare domain's SPF, DKIM, DMARC, and BIMI configuration and return protocol scores plus provider recommendations.
  - body: { domain: string, selector?: string }
- `POST https://api.mcp.ai/api/verifi_email/validate/email` — Validate one non-empty email address and return its overall validity plus syntax, MX, spoofing, and disposable-address signals.
  - body: { email: string }
- `POST https://api.mcp.ai/api/verifi_email/validate/emails` — Validate 1-10 email address strings in one synchronous request and return one ordered result per input, including malformed strings as invalid results.
  - body: { emails: string[] }

## Example prompts
- "What can I do in Verifi.Email?"
- "Show me a summary of my Verifi.Email account"

## More
- Page: https://mcp.ai/verifi_email
- Agent spec (llms.txt): https://mcp.ai/verifi_email/llms.txt
- Postman collection: https://mcp.ai/verifi_email/postman.json
