@skilder-ai/runtime 0.4.5 → 0.4.6
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 +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Add the following configuration in your MCP Client. This will run an "agent" on
|
|
|
13
13
|
"command": "npx",
|
|
14
14
|
"args": ["@skilder-ai/runtime"],
|
|
15
15
|
"env": {
|
|
16
|
-
"
|
|
16
|
+
"USER_KEY": "<YOUR_USER_API_KEY>"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -24,8 +24,14 @@ Add the following configuration in your MCP Client. This will run an "agent" on
|
|
|
24
24
|
|
|
25
25
|
Execute the following command in your terminal:
|
|
26
26
|
|
|
27
|
+
**Recommended: Using a runtime key**
|
|
28
|
+
|
|
27
29
|
```bash
|
|
28
|
-
|
|
30
|
+
RUNTIME_KEY=<RUNTIME_API_KEY> npx @skilder-ai/runtime
|
|
29
31
|
```
|
|
30
32
|
|
|
33
|
+
**Using a system key**
|
|
34
|
+
```bash
|
|
35
|
+
SYSTEM_KEY=<SYSTEM_API_KEY> RUNTIME_NAME=<NAME_OF_RUNTIME> npx @skilder-ai/runtime
|
|
36
|
+
|
|
31
37
|
This will start a long-living node process with the ability to host MCP Servers and execute their tools from this runtime.
|
package/package.json
CHANGED