Zapier + SalesCrew
There is no SalesCrew app in the Zapier directory. The connection is outbound webhooks going out and the API coming in, which covers most of what people want a Zap for.
- Webhooks out, API in
- No native Zapier app
- Deliveries logged and retried

The short answer
- SalesCrew does not have a listed Zapier app. It connects through outbound webhooks with deliveries and retries, plus its API and MCP server. Any Zap that uses Webhooks by Zapier works.
- Out of SalesCrew: register a webhook on the events you care about and Zapier catches it. Into SalesCrew: a Zap posts to the API or calls an MCP tool, and the write lands in the audit log with its actor.
- The honest trade is discoverability. A native app gives you named triggers in a dropdown; webhooks give you the same data with two extra minutes of setup and no waiting for a vendor to ship a connector.
Mechanism
Read the first row before anything else.
| What | Mechanism | Direction | Objects | Status |
|---|---|---|---|---|
| Native Zapier app | Does not exist. There is no SalesCrew listing in the Zapier directory | , | , | Not available |
| SalesCrew to Zapier | Outbound webhook to a Zapier catch hook URL | Outbound | Any event you register | Available |
| Delivery reliability | Deliveries recorded, failures retried, signature secret rotatable | Outbound | Webhook deliveries | Available |
| Zapier to SalesCrew | Zapier posts to the SalesCrew API | Inbound | Contacts, companies, deals, tasks, notes, leads | Available |
| Zapier to SalesCrew over MCP | A custom action calling an MCP tool with a scoped token | Inbound | Anything with a tool, which is every UI action | Available |
| Triggers in a Zapier dropdown | Not available without a listed app | , | , | Not available |
Mechanisms read from the SalesCrew integration table, September 2026. Zapier's own pricing decides whether webhook steps cost you extra on your plan.
Setup
One Zap in each direction, and you have covered most cases.
- 1
Create the catch hook in Zapier
Start a Zap with Webhooks by Zapier as the trigger, choose Catch Hook, and copy the URL Zapier gives you.
- 2
Register the webhook in SalesCrew
webhook_create takes the URL and the events. webhook_test fires a sample so you can map fields before anything real happens.
- 3
Map the fields in Zapier
The payload is JSON. Map what you need into the destination app and ignore the rest.
- 4
For the other direction, issue a token
mcp_token_issue creates a token scoped by channel, profile and area. Give the Zap the narrowest scope that does the job.
- 5
Post from Zapier
A Webhooks by Zapier action posting to the SalesCrew API or an MCP tool. The write is audited with the token as the actor.
- 6
Watch the deliveries
webhook_deliveries shows what was sent and what failed, and webhook_retry replays one. Rotate the signing secret when someone leaves.
Why we say webhook rather than integration
Questions
- Will there be a native Zapier app?
- Not at launch and it is not on the published roadmap. Outbound webhooks, the API and the MCP server are the connection path today.
- Is a webhook slower than a native trigger?
- No. A catch hook fires as soon as the event does. What you lose is the dropdown of prebuilt triggers, not speed.
- What events can I send?
- You register the webhook against the events you want. Because every action in the app is also an MCP tool, the surface of things that can happen is the same surface an agent can operate.
- Is this secure?
- Deliveries are signed with a secret you can rotate, and inbound writes use a scoped token that you can revoke. Every write is logged with the actor, whether that is a person, a token or an agent.
- Should I use Zapier, Make or n8n?
- Whichever you already run. All three connect the same way here, so the choice is about your own team rather than about SalesCrew.
Wire one webhook each way and see what it covers
Most teams find two Zaps replace the connector they were waiting for.