nagoc-zerowork 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -4
- package/dist/index.js +42 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,13 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
A free Model Context Protocol (MCP) server that connects any MCP-compatible AI client (Claude Desktop, Cursor, Windsurf, Zed, etc.) to your **ZeroWork** TaskBots.
|
|
4
4
|
|
|
5
|
-
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, and query comprehensive ZeroWork documentation.
|
|
5
|
+
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.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
9
9
|
- **Trigger TaskBots** — easily trigger any of your configured ZeroWork TaskBots
|
|
10
10
|
- **Dynamic Data** — pass JSON payloads to your TaskBots (populates `zw_webhook_data`)
|
|
11
|
-
- **
|
|
11
|
+
- **Search Official Docs** — use `search_zerowork_docs` to query the entire ZeroWork documentation directly inside Claude
|
|
12
|
+
- **Robust Selector Generator** — use `generate_robust_selector` to create non-brittle CSS/XPath selectors tailored for ZeroWork
|
|
13
|
+
- **Built-in Knowledge Base** — Claude can read the embedded ZeroWork documentation resources to help you build and debug TaskBots
|
|
12
14
|
- **Always up to date** — uses `@latest` so every restart pulls the newest version automatically
|
|
13
15
|
- **Zero install** — runs via `npx` with no cloning required
|
|
14
16
|
- **Multi-platform** — works with Claude Desktop, Cursor, Windsurf, Zed, and any stdio MCP client
|
|
@@ -36,7 +38,7 @@ Node.js is a free program that allows this MCP to run on your computer. You only
|
|
|
36
38
|
3. Click "Generate Webhook"
|
|
37
39
|
4. Copy the webhook URL (e.g., `https://hook.zerowork.io/...`)
|
|
38
40
|
|
|
39
|
-
## Step
|
|
41
|
+
## Step 3 — Setup (Claude Desktop)
|
|
40
42
|
|
|
41
43
|
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.
|
|
42
44
|
|
|
@@ -77,10 +79,12 @@ Save the file and restart Claude Desktop. The MCP server will connect automatica
|
|
|
77
79
|
## How to Ask Claude
|
|
78
80
|
|
|
79
81
|
Once connected, you can ask Claude things like:
|
|
82
|
+
- "Search ZeroWork docs for how to use multi-line JavaScript Code Blocks in dynamic inputs."
|
|
83
|
+
- "Here is an HTML snippet from LinkedIn. Generate a robust ZeroWork selector for the Connect button."
|
|
80
84
|
- "What ZeroWork bots do I have configured?"
|
|
81
85
|
- "Trigger my scraperBot"
|
|
82
86
|
- "Trigger my dmBot and send it this JSON payload: { 'email': 'test@example.com' }"
|
|
83
|
-
- "How do I use variables in ZeroWork?"
|
|
87
|
+
- "How do I use variables in ZeroWork?"
|
|
84
88
|
|
|
85
89
|
## Environment Variables
|
|
86
90
|
|
|
@@ -90,6 +94,8 @@ Once connected, you can ask Claude things like:
|
|
|
90
94
|
|
|
91
95
|
## Available Tools
|
|
92
96
|
|
|
97
|
+
- `search_zerowork_docs` - Searches the entire ZeroWork official documentation
|
|
98
|
+
- `generate_robust_selector` - Analyzes HTML snippets to craft non-brittle ZeroWork selectors
|
|
93
99
|
- `list_taskbots` - Lists all configured TaskBots
|
|
94
100
|
- `trigger_taskbot` - Triggers a TaskBot without data
|
|
95
101
|
- `trigger_taskbot_with_data` - Triggers a TaskBot and passes JSON data
|
|
@@ -103,8 +109,14 @@ Once connected, you can ask Claude things like:
|
|
|
103
109
|
- `resource://zerowork/variables`
|
|
104
110
|
- `resource://zerowork/tables`
|
|
105
111
|
- `resource://zerowork/selectors`
|
|
112
|
+
- `resource://zerowork/loops`
|
|
113
|
+
- `resource://zerowork/chatgpt`
|
|
114
|
+
- `resource://zerowork/anti_bot`
|
|
106
115
|
- `resource://zerowork/troubleshooting`
|
|
116
|
+
- `resource://zerowork/building_blocks`
|
|
117
|
+
- `resource://zerowork/dynamic_inputs`
|
|
107
118
|
|
|
108
119
|
## License
|
|
109
120
|
|
|
110
121
|
ISC © nagoc
|
|
122
|
+
|