nagoc-zerowork
v1.1.20
Published
An MCP Server for ZeroWork.io — trigger TaskBots, send dynamic data via webhooks, and get full ZeroWork documentation
Maintainers
Readme
nagoc-zerowork
A free Model Context Protocol (MCP) server that connects any MCP-compatible AI client (Claude Desktop, Cursor, Windsurf, Zed, etc.) to your ZeroWork TaskBots.
Because ZeroWork does not have a public REST API for managing bots, this MCP server acts as a Webhook Manager. You configure your TaskBot webhook URLs, and Claude can then dynamically trigger your automations, pass data to them, generate robust selectors, and query comprehensive ZeroWork documentation.
Features
- Trigger TaskBots — easily trigger any of your configured ZeroWork TaskBots
- Dynamic Data — pass JSON payloads to your TaskBots (populates
zw_webhook_data) - Search Official Docs — use
search_zerowork_docsto query the entire ZeroWork documentation directly inside Claude - Search Video Tutorials — use
search_zerowork_tutorialsto query 38+ official video masterclasses and WhatsApp automation guides - Robust Selector Generator — use
generate_robust_selectorto create non-brittle CSS/XPath selectors tailored for ZeroWork - Built-in Knowledge Base — Claude can read the embedded ZeroWork documentation resources to help you build and debug TaskBots
- Always up to date — uses
@latestso every restart pulls the newest version automatically - Zero install — runs via
npxwith no cloning required - Multi-platform — works with Claude Desktop, Cursor, Windsurf, Zed, and any stdio MCP client
Requirements
- Node.js v18 or above (see below for how to install)
- ZeroWork Creator Account (to generate webhook URLs)
Step 1 — Install Node.js (one-time setup)
Node.js is a free program that allows this MCP to run on your computer. You only need to install it once.
- Go to https://nodejs.org
- Click the big "Download Node.js (LTS)" button
- Open the downloaded file and click Next → Next → Finish (just like installing any normal app)
- That's it — you're ready!
Not sure if you already have Node.js? Press
Win + R, typecmd, press Enter, then typenode -vand press Enter. If you see a version number (e.g.v20.x.x), you're all set.
Step 2 — Get your Webhook URLs
- Open your ZeroWork Creator dashboard (
creator.zerowork.io) - Go to your TaskBot -> Run Settings
- Click "Generate Webhook"
- Copy the webhook URL (e.g.,
https://hook.zerowork.io/...)
Step 3 — Setup (Claude Desktop)
Open your claude_desktop_config.json file and configure your bots using the ZEROWORK_BOTS environment variable. The value must be a valid JSON string mapping your custom bot names to their webhook URLs.
Note: The
@latesttag ensures that every time Claude Desktop restarts, it automatically pulls the latest version of this MCP.
Windows:
{
"mcpServers": {
"nagoc-zerowork": {
"command": "cmd",
"args": ["/c", "npx", "-y", "nagoc-zerowork@latest"],
"env": {
"ZEROWORK_BOTS": "{\"scraperBot\":\"https://hook.zerowork.io/xxx\", \"dmBot\":\"https://hook.zerowork.io/yyy\"}"
}
}
}
}macOS / Linux:
{
"mcpServers": {
"nagoc-zerowork": {
"command": "npx",
"args": ["-y", "nagoc-zerowork@latest"],
"env": {
"ZEROWORK_BOTS": "{\"scraperBot\":\"https://hook.zerowork.io/xxx\", \"dmBot\":\"https://hook.zerowork.io/yyy\"}"
}
}
}
}Save the file and restart Claude Desktop. The MCP server will connect automatically.
🎨 Workflow Diagram Generation
You can ask Claude to design a visual flowchart or an interactive blueprint of any automation workflow.
Just ask: "Build me a diagram for a [platform] [task] workflow" (e.g. "Build me a diagram for a WhatsApp cold outreach bot").
Claude will pause and ask you to choose between two styles:
- Interactive HTML: Claude writes a premium, self-contained HTML file. Save it and open it in your browser to see a stunning Interactive Blueprint where you can click on any block to see the exact ZeroWork settings!
- Mermaid Flowchart: Claude outputs the raw copyable Mermaid code block as text, so you can easily copy and paste it into Draw.io, Mermaid Live Editor, or any other software.
Because this MCP enforces strict ZeroWork naming rules, Claude will always use the exact building block names (e.g., Launch Browser, Start Repeat) in its diagrams.
How to Ask Claude
Once connected, you can ask Claude things like:
- "Build a diagram for a LinkedIn scraper bot"
- "Search ZeroWork video tutorials for how to scrape paginated data with nested loops."
- "Search ZeroWork docs for how to use multi-line JavaScript Code Blocks in dynamic inputs."
- "Here is an HTML snippet from LinkedIn. Generate a robust ZeroWork selector for the Connect button."
- "What ZeroWork bots do I have configured?"
- "Trigger my scraperBot"
- "Trigger my dmBot and send it this JSON payload: { 'email': '[email protected]' }"
- "How do I use variables in ZeroWork?"
Environment Variables
| Variable | Required | Description |
|---|---|---|
| ZEROWORK_BOTS | ❌ Optional | JSON string mapping bot names to webhook URLs. E.g. {"botName": "url"} |
Available Tools
search_zerowork_docs- Searches the entire ZeroWork official documentationsearch_zerowork_tutorials- Searches 38+ official video masterclasses and automation guidesgenerate_robust_selector- Analyzes HTML snippets to craft non-brittle ZeroWork selectorslist_taskbots- Lists all configured TaskBotstrigger_taskbot- Triggers a TaskBot without datatrigger_taskbot_with_data- Triggers a TaskBot and passes JSON datatrigger_webhook_url- Manually triggers any URLget_mcp_version- Gets the package version
Available Resources
resource://zerowork/generalresource://zerowork/webhooksresource://zerowork/variablesresource://zerowork/tablesresource://zerowork/selectorsresource://zerowork/loopsresource://zerowork/chatgptresource://zerowork/anti_botresource://zerowork/troubleshootingresource://zerowork/building_blocksresource://zerowork/dynamic_inputsresource://zerowork/visual_insightsresource://zerowork/tutorials/tutorial_1(up totutorial_39for full video transcripts)
License
ISC © nagoc
