$git clone https://github.com/zapier/marketplaceInstall Zapier in your coding agent via the Claude Code, Codex, and Copilot CLI marketplaces.
| 1 | # Zapier Marketplace |
| 2 | |
| 3 | Zapier's plugin marketplace for coding agents. One command to add, then install any of: |
| 4 | |
| 5 | | Plugin | Type | What it does | |
| 6 | | --- | --- | --- | |
| 7 | | `agent-skills` | Skills | Zapier-authored agentskills.io skills for compatible clients | |
| 8 | | `dropbox` | MCP + skill | Dropbox files and folders — upload, share, search, and organize | |
| 9 | | `google-ads` | MCP + skill | Google Ads campaigns, budgets, and reporting | |
| 10 | | `google-calendar` | MCP + skill | Events, calendars, and free/busy availability | |
| 11 | | `google-contacts` | MCP + skill | Contacts and contact groups (labels) | |
| 12 | | `google-docs` | MCP + skill | Create, read, and edit Google Docs | |
| 13 | | `google-sheets` | MCP + skill | Read and write Google Sheets data, formatting, and structure | |
| 14 | | `google-tasks` | MCP + skill | Task lists and to-dos in Google Tasks | |
| 15 | | `gtm-cheat-codes` | Skills | Marketing / sales / CS workflow recipes | |
| 16 | | `mcp` | MCP server | Hosted Zapier MCP — connect any agent to 9,000+ apps | |
| 17 | | `microsoft-outlook` | MCP + skill | Outlook mail, calendar, and contacts | |
| 18 | | `notion` | MCP + skill | Independent Notion connector — search, read, and write pages | |
| 19 | | `sdk` | SDK | TypeScript helpers for building against Zapier | |
| 20 | | `telegram` | MCP + skill | Telegram bot — messages, media, and chats | |
| 21 | | `trello` | MCP + skill | Trello boards, lists, and cards | |
| 22 | | `wade-skills` | Skills | Wade Foster's (Zapier CEO) day-to-day agent skills | |
| 23 | | `youtube` | MCP + skill | YouTube videos, playlists, and comments | |
| 24 | |
| 25 | ## Install |
| 26 | |
| 27 | ### Claude Code |
| 28 | |
| 29 | **CLI** (from your terminal, without opening a session): |
| 30 | |
| 31 | ``` |
| 32 | # Add the marketplace once |
| 33 | claude plugin marketplace add zapier/marketplace |
| 34 | |
| 35 | # Install whichever you want |
| 36 | claude plugin install notion@zapier |
| 37 | claude plugin install gtm-cheat-codes@zapier |
| 38 | claude plugin install mcp@zapier |
| 39 | |
| 40 | # See what you've got |
| 41 | claude plugin list |
| 42 | ``` |
| 43 | |
| 44 | **In-session** (slash commands inside an active Claude Code session): |
| 45 | |
| 46 | ``` |
| 47 | # Add the marketplace once |
| 48 | /plugin marketplace add zapier/marketplace |
| 49 | |
| 50 | # Install whichever you want |
| 51 | /plugin install notion@zapier |
| 52 | /plugin install gtm-cheat-codes@zapier |
| 53 | /plugin install mcp@zapier |
| 54 | ``` |
| 55 | |
| 56 | Browse the full list interactively with `/plugin` → Discover. |
| 57 | |
| 58 | **Try it out** — once a plugin is installed, ask Claude: |
| 59 | |
| 60 | ``` |
| 61 | # Invoke the Notion plugin |
| 62 | claude "What do our Notion docs say about onboarding new engineers?" |
| 63 | |
| 64 | # Invoke a GTM cheat code |
| 65 | claude "Draft a cold outreach email for our new pricing tier" |
| 66 | ``` |
| 67 | |
| 68 | ### GitHub Copilot CLI |
| 69 | |
| 70 | ``` |
| 71 | copilot plugin marketplace add zapier/marketplace |
| 72 | copilot plugin install mcp@zapier |
| 73 | copilot plugin install sdk@zapier |
| 74 | copilot plugin install wade-skills@zapier |
| 75 | ``` |
| 76 | |
| 77 | `mcp` (Zapier MCP), `sdk`, and `wade-skills` are currently installable via Copilot CLI. Other plugins will be added as their home repos ship `.github/plugin/plugin.json`. |
| 78 | |
| 79 | ### OpenAI Codex |
| 80 | |
| 81 | ``` |
| 82 | codex plugin marketplace add zapier/marketplace |
| 83 | codex plugin add zapier@zapier |
| 84 | codex plugin add sdk@zapier |
| 85 | codex plugin add wade-skills@zapier |
| 86 | ``` |
| 87 | |
| 88 | Or open the in-CLI picker with `/plugins` and toggle plugins on. |
| 89 | |
| 90 | `zapier` (Zapier MCP), `sdk`, and `wade-skills` are currently installable via Codex. Other plugins will be added as their home repos ship `.codex-plugin/plugin.json`. |
| 91 | |
| 92 | ## Contributing |
| 93 | |
| 94 | See [CONTRIBUTING.md](./CONTRIBUTING.md). The three manifest files (Claude Code + Copilot + Codex) live under `.claude-plugin/`, `.github/plugin/`, and `.agents/plugins/` — the schemas that validate each are in [`schemas/`](./schemas/). |
| 95 | |
| 96 | ## Trust |
| 97 | |
| 98 | Plugins run in the same environment as the agent that loads them. The plugins listed here are Zapier-maintained; their source is auditable in each linked home repo. |
| 99 | |
| 100 | ## License |
| 101 | |
| 102 | [MIT](./LICENSE). Individual plugins carry their own license from their home repos. |