Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

zapier-mcpZapier MCP 搜索

Agent Skill

zapier-mcp 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

34,361

周安装

1,476

GitHub Stars

1

下载量

12,044
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:zapier-mcp(Zapier MCP 搜索)
来源仓库:https://github.com/maverick-software/zapier-mcp
安装命令:
openclaw skills install zapier-mcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install zapier-mcp

简介

连接 Zapier 生态的 8000+ 个应用程序接口。

  • 支持 Clawdbot 网关仪表板集成与自动化工作流。
  • 可用于设置跨平台触发器与数据同步任务。zapier-mcp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需登录 Zapier 账户并授权相关应用访问权限。
  • 建议先在沙箱环境测试后再部署生产级流程。

SKILL.md

name
zapier-mcp
description
Connect 8,000+ apps via Zapier MCP. Includes full UI integration for Clawdbot Gateway dashboard. Use when setting up Zapier integration, connecting apps, or using Zapier tools via mcporter.
metadata
{"clawdbot":{"emoji":"⚡","requires":{"bins":["mcporter"],"clawdbot":">=2026.1.0"},"category":"integrations"}}

Zapier MCP

Connect your AI agent to 8,000+ apps via Zapier's MCP (Model Context Protocol) integration. This skill provides:

  • Full UI Dashboard — Configure your MCP URL, test connections, browse available tools
  • No OAuth Complexity — Zapier handles all authentication flows
  • MCP Integration — Tools are accessible via mcporter

Overview

Zapier MCP exposes your configured Zapier actions as tools your agent can call. Unlike Pipedream (which requires OAuth token management), Zapier MCP uses a simple URL-based authentication — just paste your MCP URL and you're connected.

Prerequisites

  1. Zapier Account — Sign up at zapier.com
  2. mcporter — MCP tool runner (npm install -g mcporter)
  3. Clawdbot Gateway — v2026.1.0 or later with UI enabled

Quick Start

Step 1: Get Your Zapier MCP URL

  1. Go to zapier.com/mcp and sign in
  2. Configure which actions to expose (e.g., "Send Slack message", "Create Google Sheet row")
  3. Copy your personalized MCP URL (looks like https://actions.zapier.com/mcp/...)

Step 2: Configure in Clawdbot UI

  1. Open Clawdbot Dashboard → ToolsZapier
  2. Click Configure
  3. Paste your MCP URL
  4. Click Save

That's it! Zapier will validate the URL and show how many tools are available.

Step 3: Use Your Tools

Once connected, tools are available via mcporter:

# List available tools
mcporter list zapier-mcp --schema

# Call a tool
mcporter call zapier-mcp.<tool_name> --args '{"instructions": "your request"}'

Usage Patterns

The instructions Parameter

Every Zapier tool accepts an instructions parameter. Zapier's AI interprets this to fill in missing parameters:

# ❌ Vague - may prompt for clarification
mcporter call zapier-mcp.slack_send_message \
  --args '{"instructions": "Send a message"}'

# ✅ Specific - AI can resolve parameters
mcporter call zapier-mcp.slack_send_message \
  --args '{"instructions": "Send \"Hello team!\" to the #general channel"}'

The output_hint Parameter

Control what data is returned:

mcporter call zapier-mcp.google_sheets_find_row \
  --args '{
    "instructions": "Find row where email is bob@example.com",
    "output_hint": "name, email, phone number"
  }'

Common Tool Patterns

# Slack
mcporter call zapier-mcp.slack_send_message \
  --args '{"instructions": "Send \"Build complete!\" to #deployments"}'

# Gmail
mcporter call zapier-mcp.gmail_send_email \
  --args '{"instructions": "Send email to bob@example.com with subject \"Meeting\" and body \"See you at 3pm\""}'

# Google Sheets
mcporter call zapier-mcp.google_sheets_create_row \
  --args '{"instructions": "Add row with Name=John, Email=john@example.com to Sales Leads spreadsheet"}'

# Notion
mcporter call zapier-mcp.notion_create_page \
  --args '{"instructions": "Create page titled \"Meeting Notes\" in the Team Wiki database"}'

# Calendar
mcporter call zapier-mcp.google_calendar_create_event \
  --args '{"instructions": "Create meeting \"Team Standup\" tomorrow at 10am for 30 minutes"}'

Architecture

How It Works

  1. You configure actions in Zapier's MCP dashboard
  2. Zapier generates a unique MCP URL for your account
  3. Clawdbot stores the URL in mcporter config
  4. When you call a tool, mcporter sends a JSON-RPC request to Zapier
  5. Zapier executes the action and returns results

Files Modified

LocationPurpose
~/clawd/config/mcporter.jsonMCP server configuration with Zapier URL

Backend Endpoints

The skill uses these gateway RPC methods:

MethodPurpose
zapier.statusGet connection status and tool count
zapier.saveValidate and store MCP URL
zapier.testTest the connection
zapier.disconnectRemove Zapier from mcporter config
zapier.toolsList all available tools

SSE Response Format

Zapier MCP uses Server-Sent Events format:

event: message
data: {"result":{"tools":[...]},"jsonrpc":"2.0","id":1}

The backend automatically parses this format.

UI Features

The Zapier page in Clawdbot dashboard provides:

  • Connection Status — Shows if configured and tool count
  • MCP URL Configuration — Paste and validate your URL
  • Test Connection — Verify the URL works
  • Tool Browser — Expandable groups showing all available tools by app

Tool Grouping

Tools are automatically grouped by app:

  • QuickBooks Online (47 tools)
  • Google Sheets (12 tools)
  • Slack (8 tools)
  • etc.

Comparison: Zapier vs Pipedream

FeatureZapier MCPPipedream Connect
SetupPaste URLOAuth + credentials
Token refreshNot neededEvery 45 minutes
Apps8,000+2,000+
CostZapier subscriptionPipedream subscription
ComplexitySimpleMore control

Use Zapier when: You want simple setup and already use Zapier.

Use Pipedream when: You need fine-grained OAuth control or prefer Pipedream's pricing.

Troubleshooting

"Connection test failed"

  • Verify the URL is correct (should start with https://actions.zapier.com/mcp/)
  • Check that you've configured at least one action in Zapier's MCP dashboard
  • Try regenerating the MCP URL in Zapier

"No tools available"

  • Go to zapier.com/mcp and add some actions
  • Click "Refresh" in the Clawdbot UI after adding actions

"followUpQuestion" in response

  • Zapier needs more information. Be more specific in your instructions parameter.
  • Example: Instead of "find customer", use "find customer named Acme Corp"

Tool not found

  • Run mcporter list zapier-mcp to see available tools
  • Tool names use underscores: quickbooks_online_find_customer
  • You may need to add the action in Zapier's MCP configuration

Adding App-Specific Skills

Once Zapier MCP is connected, you can create app-specific skills for commonly used integrations. See:

  • zapier-quickbooks — QuickBooks Online tools with detailed parameter documentation

These skills provide deeper documentation for specific apps while using the same underlying Zapier MCP connection.

Reference Files

This skill includes reference implementations:

  • reference/zapier-backend.ts — Gateway RPC handlers
  • reference/zapier-controller.ts — UI controller logic
  • reference/zapier-views.ts — UI rendering (Lit)

These are for reference when building custom integrations or debugging.

Security Considerations

BehaviorDescription
URL contains authYour MCP URL includes authentication — treat it like a password
Stored in configURL saved to ~/clawd/config/mcporter.json
External API callsCalls actions.zapier.com

Best practices:

  • Don't share your MCP URL publicly
  • Regenerate the URL if compromised (in Zapier dashboard)
  • Review which actions are exposed in Zapier's MCP settings

Support

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.09%
按下载量换算10,971

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills