nagoc-zerowork 1.0.0 → 1.0.1
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 +13 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,10 +15,21 @@ Because ZeroWork does not have a public REST API for managing bots, this MCP ser
|
|
|
15
15
|
|
|
16
16
|
## Requirements
|
|
17
17
|
|
|
18
|
-
- Node.js v18 or above
|
|
18
|
+
- Node.js v18 or above (see below for how to install)
|
|
19
19
|
- ZeroWork Creator Account (to generate webhook URLs)
|
|
20
20
|
|
|
21
|
-
## Step 1 —
|
|
21
|
+
## Step 1 — Install Node.js (one-time setup)
|
|
22
|
+
|
|
23
|
+
Node.js is a free program that allows this MCP to run on your computer. You only need to install it once.
|
|
24
|
+
|
|
25
|
+
1. Go to **[https://nodejs.org](https://nodejs.org)**
|
|
26
|
+
2. Click the big **"Download Node.js (LTS)"** button
|
|
27
|
+
3. Open the downloaded file and click **Next → Next → Finish** (just like installing any normal app)
|
|
28
|
+
4. That's it — you're ready!
|
|
29
|
+
|
|
30
|
+
> Not sure if you already have Node.js? Press `Win + R`, type `cmd`, press Enter, then type `node -v` and press Enter. If you see a version number (e.g. `v20.x.x`), you're all set.
|
|
31
|
+
|
|
32
|
+
## Step 2 — Get your Webhook URLs
|
|
22
33
|
|
|
23
34
|
1. Open your ZeroWork Creator dashboard (`creator.zerowork.io`)
|
|
24
35
|
2. Go to your TaskBot -> Run Settings
|
package/package.json
CHANGED