zapier-explore
Explore what Zapier MCP can do for the user — interview them about their role and the apps they live in, suggest specific use cases as on-demand prompts, then…
Walk a new user through setting up their first Zapier action and running it live — the smallest possible win. Asks what app they use, recommends one read action to enable, guides them to mcp.zapier.com to add it, then demonstrates it working in the same chat. Use when the user
$ npx -y skills add zapier/zapier-mcp --skill zapier-demo --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/zapier-demoContext preview
The summary Claude sees to decide when to auto-load this skill.
Walk a new user through setting up their first Zapier action and running it live — the smallest possible win. Asks what app they use, recommends one read action to enable, guides them to mcp.zapier.com to add it, then demonstrates it working in the same chat. Use when the user
name: zapier-demo description: Walk a new user through setting up their first Zapier action and running it live — the smallest possible win. Asks what app they use, recommends one read action to enable, guides them to mcp.zapier.com to add it, then demonstrates it working in the same chat. Use when the user asks "show me how Zapier works", "set up my first action", "give me a quick demo", "I want to try it", "what's the fastest way to see this work", "minimal setup", "hello world", or "smallest example".
Walk a new user through the smallest possible first win — one app, one read action, one prompt that actually runs. The whole flow should feel quick: a few minutes from "I'm curious" to "oh, that worked."
This is the natural next step after `zapier-onboard` for users who want to see Zapier work before configuring a full toolkit.
If the user says "show me," lean here. If they haven't connected the server yet, route to zapier-onboard first.
Inspect available Zapier MCP tools. If none exist, the server isn't authenticated yet — authenticate first via `mcp_auth` or the client's MCP settings (same pattern as `zapier-onboard`'s connection step). Don't continue until at least the configuration tools are available.
Once connected, set the tone:
> "Let's get one Zapier action working so you can see this in action. We'll pick one app, enable one thing, and try it — should take just a couple minutes."
Lead with concrete popular options — most people find it easier to react to a list than to come up with one cold:
> "Which app do you want to try first? A few popular ones to pick from: > - **Gmail** — find or draft emails > - **Slack** — find messages and ping channels > - **Google Sheets** — look up rows in a sheet > - **Google Calendar** — check your schedule > - **HubSpot** — find contacts and deals > - **Jira** — look up tickets > - **Notion** — find pages > > Or name something else — Zapier supports 9,000+ apps."
Once the user picks, **fetch the app's Zapier marketing page** to confirm Zapier supports it and surface action details for Step 3:
https://zapier.com/apps/{app-slug}.mdExamples: `https://zapier.com/apps/slack.md`, `https://zapier.com/apps/hubspot.md`, `https://zapier.com/apps/google-calendar.md`.
**Slug conventions:** lowercase and hyphenated. `Google Calendar` → `google-calendar`. `Microsoft Teams` → `microsoft-teams`. `HubSpot` → `hubspot`. When uncertain, check `https://zapier.com/find-apps/{letter}` (the alphabetical browse) to confirm the canonical slug.
The fetched page tells you:
If the `.md` mirror 404s, try the HTML page at `https://zapier.com/apps/{app-slug}` as a fallback. If both 404, be honest with the user:
> "I'm not finding [App] in Zapier's catalog under that name. Want to pick a different one, or check [zapier.com/apps](https://zapier.com/apps) to verify the spelling?"
If they're stuck choosing:
> "If nothing jumps out — Google Calendar is the easiest first one. Everyone has a calendar, and the 'what's tomorrow?' demo lands every time."
Use the action list from the Step 2 marketing-page fetch to pick **one read action** — search/find/get/lookup. Read-only matters here: write actions need confirmation, which adds friction to a first demo. We want the simplest possible "click run, see result" loop.
Tell the user what you're recommending and why, in plain language:
> "Great — for Calendar, the simplest first action is **Find Events**. It lets your AI look up what's on your schedule. We'll add that one and try it."
If the marketing-page fetch didn't surface a clear read action, fall back to this table for the most common apps:
| App | Recommended first action | Why | |---|---|---| | Google Calendar | Find Events | Universal, easy to verify ("what's tomorrow?") | | Gmail | Find Email | High-impact, every user has emails to find | | Slack | Find Message | Most-used in chat-heavy workflows | | Google Drive | Find a File | Works for any user with Drive | | Google Sheets | Lookup Spreadsheet Row | Needs a specific sheet but very tangible | | Jira | Find Issue by Key | Needs a Jira ticket key (e.g., PROJ-123) — easy to test | | Linear | Find Issue | Same pattern as Jira | | GitHub | Find Pull Request | Read-heavy use, fast demo | | GitLab | Find Merge Requests | Same as GitHub | | Notion | Find Page | Useful for note-takers | | HubSpot | Find Contact | Sales-flavored, easy to test with own email | | Salesforce | Find Record | Like HubSpot — pick by email or name | | Trello | Find Card | Visible, easy to verify | | Asana | Find Task | Project-management equivalent | | Airtable | Find Record | Database-flavored | | Google Docs | Get Document Content | Pull a doc you have open |
If the user names an app not on this list, default to a "Find [Thing]" pattern — almost every Zapier-supported app has a search/find action. If you're unsure of the exact name, say "the find/search action for [App]" and let them pick the right one in the configuration UI.
If the server exposes a `get_configuration_url` tool, call it first and g
Zapier MCP gives any MCP-compatible AI client governed access to 9,000+ apps — send messages, pull data, trigger workflows, all in plain English. No code, no infrastructure, SOC 2 Type II certified.
Explore what Zapier MCP can do for the user — interview them about their role and the apps they live in, suggest specific use cases as on-demand prompts, then…
Onboard a new user to Zapier MCP — introduce what it can do, walk through authentication, and route into the right flow based on the state of their setup. Use…
Check the health of your Zapier MCP setup. Three modes — health check (dashboard view), audit (find waste and duplicates), diagnose (systematic…