IntegrateIntegrate
Integrations

Zapier Integration

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:

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

Setup

1. Create a Zapier OAuth App

  1. Go to Zapier Developer Portal
  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:

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:

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:

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:

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

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

Configuration Options

Prop

Type

Tools

zapier_get_profile

Get profile

No parameters.

zapier_list_zaps

List zaps

Prop

Type

zapier_list_apps

List apps

Prop

Type

zapier_list_actions

List actions

Prop

Type

zapier_list_authentications

List authentications

Prop

Type

zapier_list_zap_runs

List zap runs

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: OAuth

On this page