---
title: "Zapier Integration"
description: "List Zaps, browse apps, manage authentications, and inspect Zap runs via the Partner Workflow API"
---
The Zapier integration provides access to list Zaps, browse apps, manage authentications, and inspect Zap runs via the Partner Workflow API through the Integrate MCP server.

## Installation

The Zapier integration is included with the SDK:

```typescript
import { zapierIntegration } from "integrate-sdk/server";
```

## Setup

### 1. Create a Zapier OAuth App

1. Go to [Zapier Developer Portal](https://zapier.com)
2. Create a new OAuth application
3. Configure your redirect URI
4. Note your Client ID and Client Secret

### 2. Configure the Integration on Your Server

Add the Zapier integration to your server configuration. The integration automatically reads `ZAPIER_CLIENT_ID` and `ZAPIER_CLIENT_SECRET` from your environment variables:

```typescript
import { createMCPServer, zapierIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    zapierIntegration({
    }),
  ],
});
```

You can override the environment variables by passing explicit values:

```typescript
zapierIntegration({
  clientId: process.env.CUSTOM_ZAPIER_ID,
  clientSecret: process.env.CUSTOM_ZAPIER_SECRET,
});
```

### 3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

```typescript
import { client } from "integrate-sdk";

await client.authorize("zapier");
const result = await client.zapier.getProfile({});

console.log(result);
```

If you're using a custom client, add the integration to the integrations array:

```typescript
import { createMCPClient, zapierIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [zapierIntegration()],
});
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/zapier.ts"
  name="ZapierIntegrationConfig"
/>


## Tools

### `zapier_get_profile`

Get profile

_No parameters._

### `zapier_list_zaps`

List zaps

<AutoTypeTable
  path="generated/tool-params/zapier.ts"
  name="ZapierListZapsParams"
/>

### `zapier_list_apps`

List apps

<AutoTypeTable
  path="generated/tool-params/zapier.ts"
  name="ZapierListAppsParams"
/>

### `zapier_list_actions`

List actions

<AutoTypeTable
  path="generated/tool-params/zapier.ts"
  name="ZapierListActionsParams"
/>

### `zapier_list_authentications`

List authentications

<AutoTypeTable
  path="generated/tool-params/zapier.ts"
  name="ZapierListAuthenticationsParams"
/>

### `zapier_list_zap_runs`

List zap runs

<AutoTypeTable
  path="generated/tool-params/zapier.ts"
  name="ZapierListZapRunsParams"
/>

## Notes

- Category: Productivity
- Authentication mode: OAuth
