@filiksyos/mcptoskill 0.2.1 → 0.2.2
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 +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
**Usage** — full command signature:
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
npx @filiksyos/mcptoskill <mcp-server-url> [--header "Key: Value"] [--name=<skill-name>] [--out=<output-dir>]
|
|
17
|
+
npx @filiksyos/mcptoskill <mcp-server-url> [--header "Key: Value"] [--name=<skill-name>] [--out=<output-dir>] [--skill-key=<key>]
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
**Flags**
|
|
@@ -23,6 +23,7 @@ npx @filiksyos/mcptoskill <mcp-server-url> [--header "Key: Value"] [--name=<skil
|
|
|
23
23
|
|---|---|
|
|
24
24
|
| `<url>` | MCP server endpoint URL (required) |
|
|
25
25
|
| `--header "Key: Value"` | Add an HTTP header (repeatable for multiple headers) |
|
|
26
|
+
| `--skill-key=<key>` | Skill key from [mcptoskill.com](https://mcptoskill.com) OAuth flow (e.g. Notion). One-time use. |
|
|
26
27
|
| `--name=<name>` | Override the generated skill name |
|
|
27
28
|
| `--out=<dir>` | Output directory (default: `~/.openclaw/skills/`) |
|
|
28
29
|
|
|
@@ -46,6 +47,14 @@ npx @filiksyos/mcptoskill "https://mcp.supabase.com/mcp?project_ref=YOUR_REF" --
|
|
|
46
47
|
npx @filiksyos/mcptoskill "https://mcp.exa.ai/mcp?exaApiKey=YOUR_KEY"
|
|
47
48
|
```
|
|
48
49
|
|
|
50
|
+
4. Notion (OAuth via [mcptoskill.com](https://mcptoskill.com) — connect, then run the generated command):
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
npx @filiksyos/mcptoskill https://mcp.notion.com/mcp --skill-key sk_live_xxx
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**Skill keys (OAuth)** — Keys from mcptoskill.com are one-time use. The first install consumes the key; it cannot be used again. Re-installing on another machine requires re-authenticating at mcptoskill.com. No tokens are stored long-term on mcptoskill.com.
|
|
57
|
+
|
|
49
58
|
**What gets generated** — two files are created inside `~/.openclaw/skills/<skill-name>/`:
|
|
50
59
|
|
|
51
60
|
- `SKILL.md` — the OpenClaw skill definition with tool documentation
|