otherapi_key

Proxiedmail

ProxiedMail offers privacy-focused email services, including automatic creation of proxy emails and receiving emails via webhooks.

Verdict

Proxiedmail lets your team create and manage temporary email addresses without leaving Switchy. @mention it to spin up disposable inboxes for testing, customer support aliases, or privacy-focused workflows. The MCP exposes tools to generate proxy addresses, list active bindings, update forwarding rules, and set up webhook receivers that notify your Space when mail arrives. Useful for support teams triaging tickets, developers testing email flows, or anyone who needs throwaway addresses on demand. Requires an API key from your Proxiedmail account — no OAuth dance, but you'll need to manage token rotation yourself.

Common use cases

  • Generate disposable emails for QA testing
  • Create support aliases without IT tickets
  • Set up webhook listeners for incoming mail
  • Update forwarding rules from chat
  • Audit active proxy addresses across the team

Integration

Vendor
Proxiedmail
Category
other
Auth
API_KEY
Tools
4
Composio slug
proxiedmail

Tools

  • 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.

  • Get API Token

    Tool to retrieve a permanent api token. use after obtaining a bearer token from the auth endpoint (post /api/v1/auth).

  • List proxy bindings

    Tool to fetch a list of proxy bindings. use after authentication to list all proxy bindings associated with the user.

  • Update Proxy Binding

    Tool to update an existing proxy binding. use after obtaining the binding id to modify its addresses or settings.

Setup

Setup guide

  1. 11. Open your Switchy workspace and navigate to Settings > Integrations > Add MCP Server. 2. Select Proxiedmail from the catalog and choose API Key authentication. 3. Log into your Proxiedmail dashboard, go to API Settings, and generate a new API token with read and write permissions. 4. Paste the token into Switchy's API Key field and click Connect. 5. Switchy will verify the token by listing your existing proxy bindings — if you see a green checkmark, you're connected. 6. Open any Space, type '@Proxiedmail list my proxy bindings' and send the message to confirm the MCP responds with your current addresses. 7. If you plan to receive webhook notifications when mail arrives, use the 'create webhook receiver' tool and point it at a URL you control or a Switchy automation endpoint.

What teammates see: by default, memories from Proxiedmail are scoped to the Space (PROJECT visibility) - you can mark any memory PRIVATE or share it ORG-wide.

Works well with

Top models

Compatibility data appears once enough Spaces have used this MCP together with a given model.

How Switchy teams use it

Not enough Spaces yet to publish anonymised usage stats (we require ≥ 50 Spaces per week).

Starter prompts

List Active Proxies

@Proxiedmail list all my proxy bindings so I can see which temporary addresses are still active
Open in a Space →

Create Test Inbox

@Proxiedmail create a new proxy binding with a random address that forwards to my main inbox
Open in a Space →

Update Forwarding Rule

@Proxiedmail update the proxy binding for support-temp@example.com to forward to jane@company.com instead
Open in a Space →

Set Up Webhook Receiver

@Proxiedmail create a webhook receiver and give me the URL so I can route incoming email events to this Space
Open in a Space →

Retrieve Permanent Token

@Proxiedmail get my permanent API token so I can store it in our secrets manager
Open in a Space →

Example outputs

Illustrative - representative of the model's voice and quality, not literal recordings.

Prompt

@Proxiedmail list all my current proxy bindings and show which addresses are forwarding to my main inbox

Output

Found 3 active proxy bindings in your account. 'newsletter-signups@prx.example.com' forwards to user@domain.com (created Jan 15). 'job-applications@prx.example.com' forwards to user@domain.com (created Feb 3). 'vendor-trials@prx.example.com' forwards to user@domain.com (created Feb 20). All bindings are currently active with no filters applied.

Notes

This read-heavy example demonstrates listing proxy email addresses you've created. Requires a valid API key with read permissions. The actual binding IDs and timestamps will vary by account state — this illustrative output shows the kind of summary you'd see when managing multiple forwarding addresses.

Prompt

@Proxiedmail update the 'newsletter-signups' binding to pause forwarding temporarily while I clean up my inbox

Output

Updated proxy binding 'newsletter-signups@prx.example.com' (ID: pxb_abc123). Forwarding is now paused — incoming mail to this address will be held but not delivered to user@domain.com. You can re-enable forwarding anytime by updating the binding's active status. No emails will be lost during the pause period.

Notes

This write example shows modifying an existing proxy binding's behavior. You'll need the binding ID (obtained from a list operation first). Side-effect: emails sent to this proxy address won't reach your inbox until you reactivate forwarding. Useful for temporarily isolating high-volume senders.

Prompt

@Proxiedmail create a new webhook receiver for incoming email events, then draft a Node.js snippet that logs sender addresses when emails arrive

Output

Created webhook receiver at endpoint: https://webhooks.proxiedmail.com/recv/wh_xyz789. This URL will receive POST requests whenever an email hits any of your proxy addresses. Here's a basic Express handler: `app.post('/webhook', (req, res) => { const { from, to, subject } = req.body; console.log('Email from:', from); res.sendStatus(200); });` Remember to verify the webhook signature in production to prevent spoofing.

Notes

This synthesis example pairs webhook creation with AI-generated integration code. Webhooks let you build custom workflows (auto-tagging, CRM sync, spam analysis) beyond simple forwarding. You'll need to host the endpoint yourself and handle Proxiedmail's webhook payload format. Rate limits apply to webhook delivery retries.

Use-case deep-dives

Support ticket email routing

When Proxiedmail makes sense for customer support triage

A 6-person support team fields inbound tickets from three channels: a shared inbox, a contact form, and partner escalations. They want each channel to route to a different Slack thread without exposing personal email addresses or spinning up a full helpdesk. Proxiedmail wins here because you can bind proxy addresses to each channel, update routing rules as the team grows, and capture webhook events when messages arrive. The API token flow is straightforward for a one-time setup script. The trade-off: if you're already paying for Zendesk or Intercom, their native routing is faster to configure. But if you're pre-product-market-fit and want disposable email endpoints that don't clutter your domain's MX records, this MCP gives you programmatic control without vendor lock-in. Set it up once, forget it until you need to add a new channel.

Lead capture form backend

Proxiedmail for early-stage lead routing without a CRM

A 3-person startup runs landing pages for two pilot customers. Each page has a contact form that should notify a different founder via email, but they don't want to hardcode personal addresses in the HTML or pay for HubSpot yet. Proxiedmail lets you create a proxy binding per landing page, route replies to the right person, and update the binding when responsibilities shift. The webhook receiver tool is the key: you can log form submissions to a spreadsheet or trigger a Slack message without writing SMTP logic. The limitation: if you're collecting more than basic contact info (file uploads, multi-step forms), you'll need a real form backend like Typeform or Tally. Use this MCP when your lead volume is under 50 per week and you want email routing you can script in 20 lines of code.

Automated testing email verification

When Proxiedmail beats disposable email services for QA

A 4-person dev team runs end-to-end tests that require email verification links. They used to rely on Mailinator, but public inboxes leak test data and rate-limit unpredictably. Proxiedmail gives each test run a unique proxy address, routes confirmations to a webhook, and lets you parse the verification link programmatically. The list proxy bindings tool is useful for cleanup: after a test suite finishes, you can enumerate and delete stale addresses. The catch: if your CI pipeline runs hundreds of tests in parallel, the 4-tool API surface might bottleneck on webhook delivery latency. This MCP is the right call when you're running 10-30 test scenarios per day and need deterministic email routing without maintaining your own SMTP relay. It's overkill for unit tests, perfect for integration tests that touch real email flows.

Frequently asked

What does the Proxiedmail MCP do in Switchy?

It lets AI agents create temporary email addresses, set up webhook receivers for incoming mail, and manage email proxy bindings. Use it when you need disposable addresses for testing, form submissions, or routing inbound email to your workflows without exposing real addresses.

Do I need admin access to connect Proxiedmail?

No. You authenticate with an API key from your Proxiedmail account. Any team member with a valid key can connect it. The MCP calls the auth endpoint to exchange your key for a bearer token, then retrieves a permanent API token for subsequent operations.

Can the MCP read or send email messages?

No. It manages proxy addresses and webhook endpoints, not message content. To process incoming mail, you create a webhook receiver and handle the callback in your own code. Proxiedmail forwards the mail data; the MCP just sets up the plumbing.

Why use this instead of Proxiedmail's dashboard?

Agents can spin up temporary addresses on demand during a workflow—no manual dashboard clicks. If you're automating sign-ups, testing email flows, or routing support mail, the MCP saves you from context-switching. For one-off setup, the dashboard is faster.

Does each proxy binding count against my Proxiedmail plan?

Yes. Proxiedmail enforces its own limits on active bindings and webhook receivers. Check your plan tier before letting agents create dozens of addresses. The MCP has no separate quota; it inherits whatever your Proxiedmail account allows.

Data last verified 607 hours ago.Sources aggregated hourly to weekly. See docs/architecture/model-directory.md.