@gecho-ai/gecho-bridge 1.1.28 → 1.1.29
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/.claude-plugin/plugin.json +1 -1
- package/dist/mcp-client.cjs +1 -1
- package/dist/server.cjs +1 -1
- package/distribution-skills/tiktok-influencer/SKILL.md +5 -6
- package/distribution-skills/tiktok-influencer/_meta.json +1 -1
- package/distribution-skills/tiktok-insight/_meta.json +1 -1
- package/distribution-skills/tiktok-video-search/_meta.json +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/tiktok-search/_meta.json +1 -1
package/dist/mcp-client.cjs
CHANGED
|
@@ -33854,7 +33854,7 @@ var require_package = __commonJS({
|
|
|
33854
33854
|
"package.json"(exports2, module2) {
|
|
33855
33855
|
module2.exports = {
|
|
33856
33856
|
name: "@gecho-ai/gecho-bridge",
|
|
33857
|
-
version: "1.1.
|
|
33857
|
+
version: "1.1.29",
|
|
33858
33858
|
description: "TikTok Search and Insight tools for OpenClaw, connecting LLMs to TikTok via Chrome Extension.",
|
|
33859
33859
|
main: "mcp-client.js",
|
|
33860
33860
|
bin: {
|
package/dist/server.cjs
CHANGED
|
@@ -3640,7 +3640,7 @@ var require_package = __commonJS({
|
|
|
3640
3640
|
"package.json"(exports2, module2) {
|
|
3641
3641
|
module2.exports = {
|
|
3642
3642
|
name: "@gecho-ai/gecho-bridge",
|
|
3643
|
-
version: "1.1.
|
|
3643
|
+
version: "1.1.29",
|
|
3644
3644
|
description: "TikTok Search and Insight tools for OpenClaw, connecting LLMs to TikTok via Chrome Extension.",
|
|
3645
3645
|
main: "mcp-client.js",
|
|
3646
3646
|
bin: {
|
|
@@ -98,7 +98,7 @@ Already installed Gecho Bridge? If `@gecho-ai/gecho-bridge-bundle` is installed
|
|
|
98
98
|
If this Skill is already installed in OpenClaw, configure the Gecho Bridge MCP server once:
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
|
-
openclaw mcp set gecho-bridge '{"command":"npx","args":["-y","@gecho-ai/gecho-bridge@
|
|
101
|
+
openclaw mcp set gecho-bridge '{"command":"npx","args":["-y","@gecho-ai/gecho-bridge@latest"]}'
|
|
102
102
|
openclaw gateway restart
|
|
103
103
|
```
|
|
104
104
|
|
|
@@ -127,14 +127,14 @@ openclaw gateway restart
|
|
|
127
127
|
### Hermes setup
|
|
128
128
|
|
|
129
129
|
```bash
|
|
130
|
-
hermes mcp add gecho-bridge --command npx --args="-y" --args="@gecho-ai/gecho-bridge@
|
|
130
|
+
hermes mcp add gecho-bridge --command npx --args="-y" --args="@gecho-ai/gecho-bridge@latest"
|
|
131
131
|
hermes restart
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
If Hermes cannot find `npx` even though Node.js is installed, use the absolute `npx` path. On many macOS Homebrew installs this is:
|
|
135
135
|
|
|
136
136
|
```bash
|
|
137
|
-
hermes mcp add gecho-bridge --command /opt/homebrew/bin/npx --args="-y" --args="@gecho-ai/gecho-bridge@
|
|
137
|
+
hermes mcp add gecho-bridge --command /opt/homebrew/bin/npx --args="-y" --args="@gecho-ai/gecho-bridge@latest"
|
|
138
138
|
hermes restart
|
|
139
139
|
```
|
|
140
140
|
|
|
@@ -254,7 +254,7 @@ After installing, open the extension and log in to your Gecho account.
|
|
|
254
254
|
OpenClaw MCP setup:
|
|
255
255
|
|
|
256
256
|
```bash
|
|
257
|
-
openclaw mcp set gecho-bridge '{"command":"npx","args":["-y","@gecho-ai/gecho-bridge@
|
|
257
|
+
openclaw mcp set gecho-bridge '{"command":"npx","args":["-y","@gecho-ai/gecho-bridge@latest"]}'
|
|
258
258
|
openclaw gateway restart
|
|
259
259
|
```
|
|
260
260
|
|
|
@@ -267,7 +267,7 @@ openclaw mcp list
|
|
|
267
267
|
For Hermes:
|
|
268
268
|
|
|
269
269
|
```bash
|
|
270
|
-
hermes mcp add gecho-bridge --command npx --args="-y" --args="@gecho-ai/gecho-bridge@
|
|
270
|
+
hermes mcp add gecho-bridge --command npx --args="-y" --args="@gecho-ai/gecho-bridge@latest"
|
|
271
271
|
hermes restart
|
|
272
272
|
```
|
|
273
273
|
|
|
@@ -357,4 +357,3 @@ This Skill must never:
|
|
|
357
357
|
|
|
358
358
|
- Pretend the Skill page alone is enough when MCP is missing.
|
|
359
359
|
- Use unofficial TikTok scraping workflows, invent creator videos, solve CAPTCHA, log in to TikTok, or operate the user's browser outside the official Gecho MCP workflow.
|
|
360
|
-
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED