# MyEmailVerifier — how to use (mcp.ai)

Connect your MyEmailVerifier account and use 2 tools for email straight from your AI agent. Connect with your own API key. MyEmailVerifier checks individual email addresses for deliverability and risk signals such as disposable, role-based, catch-all, and greylisted status.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_myemailverifier?ms=1787296080000`
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. `myemailverifier_verify_email`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/myemailverifier`
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/myemailverifier/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/myemailverifier/verify/email` — Verify one email address for deliverability and return MyEmailVerifier's status, diagnosis, and risk flags. Each request consumes one verification credit.
  - body: { email: string }
- `POST https://api.mcp.ai/api/myemailverifier/verify/emails` — Verify 1 to 5 email addresses serially and return one ordered outcome per input. Each provider request is expected to consume one verification credit; locally invalid and unattempted items consume non
  - body: { emails: string[] }

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

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