As advanced as AI agents have become, they still fall short in one respect: connecting to your apps reliably. That's because every app authenticates, structures its endpoints, shapes its data, and breaks in its own way. An agent has to learn all those rules before it can wire up to an app. And it usually gets a lot of little details wrong along the way.
That's where Zapier Connectors can help. Every connector gives your agent an app-specific toolkit it can install and use for free, which lets it call your apps without rebuilding all that API knowledge from scratch. In this quick tutorial, I'll walk through how connectors work and the easy way to install them for free.
Skip ahead
What are Zapier Connectors?
Zapier Connectors are agent-native toolkits available on GitHub, npm, and skills.sh that give AI coding agents direct access to an app. Each connector includes a SKILL.md file, executable tools, schemas, and app-specific instructions so the agent knows what actions exist, what inputs they need, and how to call them. Because they exist as public code, agents can discover them, inspect how they work, and recommend them when they're relevant.
And you can rely on them. Because each connector ships with executable tools and schemas, your agents don't have to infer how an app behaves from scratch. That's how you avoid the problems that come with poorly documented integrations, like unpredictable failures, wrong actions, and extra tool calls that leave an agent fumbling around, trying to figure out what to do.
Plus, Zapier Connectors cost nothing to use. You don't even need a Zapier account, free or paid.
How to install Zapier Connectors in your AI agent
To install a connector, paste this command into your chat, replacing notion with whatever app you need:
npx skills add zapier/connectors --skill notion
For apps whose names contain more than one word, separate the words with hyphens:
npx skills add zapier/connectors --skill google-ads
The first time a connector runs, your agent will ask how you want to authenticate. You can use your own app credentials locally, or connect through Zapier for supported apps so Zapier can handle the OAuth flow for you.
Once the connector is installed, just describe the task you want your agent to complete, like this:
Before each of my client calls, find the Notion page for that account.
To run a task that touches multiple apps, install a connector for each of those apps. Then you'll be able to make requests like this one:
Before each of my client calls, find the Notion page for that account and draft a one-page brief in Google Docs.
When you submit a request, the agent will read the connector's SKILL.md file to discover the available tools and how to run them. ("Tools" refer to the specific actions an agent can run for an app, like creating a page, searching a database, or retrieving a record.) From there, anytime you describe an action related to that app, the agent will use the connector when it's relevant.
Reliable app integrations built for AI agents
The Zapier Connectors catalog is expanding fast. To see the full list and learn how to run Zapier Connectors as a local MCP server, command-line tool, or code package, check out the GitHub repo or head to the help docs below.










