Product

Dify MCP Plugin Hands-On Guide: Integrating Zapier for Effortless Agent Tool Calls

Integrate Zapier's thousands of apps into Dify AI agents using the Model Context Protocol (MCP).

Leilei

Product Marketing

Written on

Apr 1, 2025

Share

Share to Twitter
Share to LinkedIn
Share to Hacker News

Product

·

Apr 1, 2025

Dify MCP Plugin Hands-On Guide: Integrating Zapier for Effortless Agent Tool Calls

Integrate Zapier's thousands of apps into Dify AI agents using the Model Context Protocol (MCP).

Leilei

Product Marketing

Share to Twitter
Share to LinkedIn
Share to Hacker News

Product

Dify MCP Plugin Hands-On Guide: Integrating Zapier for Effortless Agent Tool Calls

Integrate Zapier's thousands of apps into Dify AI agents using the Model Context Protocol (MCP).

Leilei

Product Marketing

Written on

Apr 1, 2025

Share

Share to Twitter
Share to LinkedIn
Share to Hacker News

Product

·

Apr 1, 2025

Dify MCP Plugin Hands-On Guide: Integrating Zapier for Effortless Agent Tool Calls

Share to Twitter
Share to LinkedIn
Share to Hacker News

Product

·

Apr 1, 2025

Dify MCP Plugin Hands-On Guide: Integrating Zapier for Effortless Agent Tool Calls

Share to Twitter
Share to LinkedIn
Share to Hacker News

2025 marks the "Year of the AI Agent." As AI agents rapidly evolve, enabling large language models (LLMs) to interact seamlessly with real-world data and tools has become a key challenge. Enter the Model Context Protocol (MCP), introduced by Anthropic in late 2024, quickly becoming a widely-recognized standard.

Think of MCP as the AI world's USB-C port—it defines clear guidelines, allowing AI models to discover, understand, and safely invoke various external tools or APIs. This breakthrough means:

  • Developers no longer need complex, custom integrations for each external service.

  • Users can effortlessly leverage thousands of third-party applications, transforming AI interactions from mere conversations to powerful actions—whether handling everyday tasks, data analysis, or marketing automation.

Image source: What is Model Context Protocol (MCP)? How it simplifies AI integrations compared to APIs

Community-Contributed MCP Plugins on Dify

Within the Dify community, MCP has gained significant traction, with developers contributing several powerful plugins to simplify connecting external MCP services (like Zapier MCP and Composio MCP) into your Agent workflows:

  1. MCP SSE

A plugin that communicates with one or more MCP Servers using HTTP + Server-Sent Events (SSE), enabling your Agent to discover and invoke external tools dynamically.

  1. MCP Agent Strategy

This plugin integrates MCP directly into Workflow Agent nodes, empowering agents to autonomously decide and call external tools based on MCP-defined logic.

Integrating Zapier MCP in Dify

Zapier MCP Server packages over 7,000 apps and 30,000 actions into a single MCP Server URL. From emails to CRM updates or Slack notifications, you can quickly configure actions in Zapier, then plug them directly into your Dify Agent workflows.

Quick Setup

  1. Visit Zapier MCP Settings.

  2. Copy your unique MCP Server Endpoint link.

  3. Click "Edit MCP Actions" to add new tools and actions.

  1. Choose an application (e.g., Gmail).

  2. Select and configure specific actions like "Send Email."

  1. To set up sending emails:

  • Click "Connect" under Gmail, log in, and authorize your account.

  • For fields like recipient, subject, and body, select "Have AI guess a value," allowing dynamic AI-driven content generation based on your Agent's interactions.

  1. Repeat to expand your toolkit with additional actions.

MCP SSE Plugin for Dynamic Tool Calls

Install the MCP SSE plugin from the Dify Marketplace. Once installed, replace the URL in the template below with your Zapier MCP Server URL and paste the complete JSON configuration into plugin:

{
  "server_name": {
    "url": "https://actions.zapier.com/mcp/*******/sse",
    "headers": {},
    "timeout": 5,
    "sse_read_timeout": 300
  }
}

For multiple MCP servers (e.g., Composio), your configuration might look like this:

{
  "server_name1": {
    "url": "http://127.0.0.1:8000/sse",
    "headers": {},
    "timeout": 5,
    "sse_read_timeout": 300
  },
  "server_name2": {
    "url": "http://127.0.0.1:8001/sse"
  }
}

After configuring, create a new Agent app and enable your MCP SSE plugin in the "Tools" section. Your Agent will intelligently invoke relevant tools based on user intentions—for example, automatically drafting and sending emails via integrated Gmail actions.

Additionally, you can upload a contacts Excel file to Dify's knowledge base. This allows the Agent to auto-match recipient emails when you provide just the name and message content. Also, you can set specific prompts to ensure emails are confirmed by users before sending, as shown below:

Example GPT-4o Prompt:

# Role
You are an email sending assistant.
# Capabilities
1.  Able to use the tool named `gmail_send_email` to send emails.
2.  Able to automatically look up contact email addresses in the knowledge base.
# Workflow
1.  The user {{user_name}} is the sender. Based on the user's request, determine the recipient, subject, and body of the email. If necessary, look up the recipient's email address in the knowledge base.
2.  Before calling the tool to send the email, you must show the complete email content (recipient, subject, body) to the user {{user_name}} and request confirmation.
3.  After receiving the user's confirmation, prepare to call the tool to send the email.
# Tool Call Requirements (Core Instruction)
1.  You must call, and only call, the tool named `gmail_send_email` to send emails.
2.  When calling the `gmail_send_email` tool, you need to construct a JSON object that must contain the following three keys, and only these three keys:
     `to`: The value is the recipient's email address (string).
     `subject`: The value is the email subject (string).
     `body`: The value is the email body content (string).
3.  Then, serialize this complete JSON object into a JSON standard compliant string, and pass this string as the `arguments` parameter to the `gmail_send_email` tool.
Example Tool Call Format (Using gmail_send_email):
```json
{
  "mcp_sse_call_tool": {
    "tool_name": "gmail_send_email",
    "arguments": "{\"to\":\"recipient_email_address\",\"subject\":\"email_subject\",\"body\":\"This is the email body content.\"}"
  }
}

Integrating MCP via the Agent Strategy Plugin

Beyond the SSE plugin, the MCP Agent Strategy plugin embeds MCP directly into your workflow Agent nodes.

After installing, configure your MCP Server URL similarly:

{
  "server_name": {
    "url": "https://actions.zapier.com/mcp/*******/sse",
    "headers": {},
    "timeout": 5,
    "sse_read_timeout": 300
  }
}

With this configured, your workflow agents can autonomously leverage Zapier MCP to execute tasks like sending Gmail emails as part of your automated workflows.

Final Thoughts

Currently, MCP capabilities in Dify rely on exceptional community-developed plugins. Our heartfelt thanks go to all contributors! Meanwhile, we're actively developing native MCP support, making it even easier to configure external services like Zapier MCP and Composio directly within Dify—creating richer, more powerful integrations for all users. Stay tuned!

    On this page

    Related articles

    The Innovation Engine for Generative AI Applications

    The Innovation Engine for Generative AI Applications

    The Innovation Engine for Generative AI Applications