# Proxiedmail — how to use (mcp.ai)

Connect your Proxiedmail account and use 5 tools for email straight from your AI agent. Connect with your own API key. ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.

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

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

### Endpoints
- `POST https://api.mcp.ai/api/proxiedmail/create/webhook/receiver` — Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.
- `POST https://api.mcp.ai/api/proxiedmail/get/api/token` — Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).
  - body: { bearer_token: string }
- `POST https://api.mcp.ai/api/proxiedmail/get/webhook/data` — Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.
  - body: { hash: string }
- `POST https://api.mcp.ai/api/proxiedmail/list/proxy/bindings` — Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.
- `POST https://api.mcp.ai/api/proxiedmail/update/proxy/binding` — Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.
  - body: { data: object }

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

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