# Emailable — how to use (mcp.ai)

Connect your Emailable account and use 5 tools for email straight from your AI agent. Connect with your own API key. Emailable provides an email verification API that allows developers to integrate real-time email validation into their applications, ensuring the accuracy and deliverability of email addresses.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/emailable/get/account/info` — Tool to retrieve account information including owner email and available credits. Use when you need to confirm account status before sending email verifications.
- `POST https://api.mcp.ai/api/emailable/get/batch/status` — Tool to get the status and results of a batch verification job. Use after submitting a batch to check its progress.
  - body: { batch_id: string }
- `POST https://api.mcp.ai/api/emailable/o/auth/authorize` — Build an OAuth 2.0 authorization URL for the Emailable authorization code flow. Returns a URL to redirect users to for authorization. Upon successful authorization, users are redirected to your redire
  - body: { state?: string, client_id: string, redirect_uri: string, response_type?: string }
- `POST https://api.mcp.ai/api/emailable/verify/batch/emails` — Submit a batch of email addresses for asynchronous verification. Returns a batch ID immediately. Use this for bulk email validation (2 to 50,000 emails). For single emails, use EMAILABLE_VERIFY_EMAIL 
  - body: { emails: string[] }
- `POST https://api.mcp.ai/api/emailable/verify/email` — Tool to verify a single email address and return detailed results. Use when you need to check email deliverability and risk.
  - body: { email: string }

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

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