โ† All skills
Tencent SkillHub ยท Developer Tools

Zapier MCP

Connect 8,000+ apps via Zapier MCP. Includes full UI integration for Clawdbot Gateway dashboard. Use when setting up Zapier integration, connecting apps, or...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Connect 8,000+ apps via Zapier MCP. Includes full UI integration for Clawdbot Gateway dashboard. Use when setting up Zapier integration, connecting apps, or...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, reference/zapier-controller.ts, reference/README.md, reference/zapier-backend.ts, reference/zapier-views.ts

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 24 sections Open source page

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

Zapier Account โ€” Sign up at zapier.com mcporter โ€” MCP tool runner (npm install -g mcporter) Clawdbot Gateway โ€” v2026.1.0 or later with UI enabled

Step 1: Get Your Zapier MCP URL

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

Step 2: Configure in Clawdbot UI

Open Clawdbot Dashboard โ†’ Tools โ†’ Zapier Click Configure Paste your MCP URL 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"}'

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"}'

How It Works

You configure actions in Zapier's MCP dashboard Zapier generates a unique MCP URL for your account Clawdbot stores the URL in mcporter config When you call a tool, mcporter sends a JSON-RPC request to Zapier 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: MethodPurposezapier.statusGet connection status and tool countzapier.saveValidate and store MCP URLzapier.testTest the connectionzapier.disconnectRemove Zapier from mcporter configzapier.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 ConnectSetupPaste URLOAuth + credentialsToken refreshNot neededEvery 45 minutesApps8,000+2,000+CostZapier subscriptionPipedream subscriptionComplexitySimpleMore 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.

"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

BehaviorDescriptionURL contains authYour MCP URL includes authentication โ€” treat it like a passwordStored in configURL saved to ~/clawd/config/mcporter.jsonExternal 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

ClawdHub: clawdhub.com/skills/zapier-mcp Zapier MCP: zapier.com/mcp Zapier Help: help.zapier.com Clawdbot Discord: discord.com/invite/clawd

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs
  • SKILL.md Primary doc
  • reference/README.md Docs
  • reference/zapier-backend.ts Scripts
  • reference/zapier-controller.ts Scripts
  • reference/zapier-views.ts Scripts