@aiwerk/mcp-bridge 1.1.8 → 1.2.0
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 +2 -0
- package/dist/src/smart-filter.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -75,6 +75,8 @@ Install as a plugin (handles everything automatically):
|
|
|
75
75
|
openclaw plugins install @aiwerk/openclaw-mcp-bridge
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
+
> ⚠️ **Important:** Always use the full scoped name `@aiwerk/openclaw-mcp-bridge`. The unscoped `openclaw-mcp-bridge` on npm is a **different, unrelated package**.
|
|
79
|
+
|
|
78
80
|
See [@aiwerk/openclaw-mcp-bridge](https://github.com/AIWerk/openclaw-mcp-bridge) for details.
|
|
79
81
|
|
|
80
82
|
## Configuration
|
package/dist/src/smart-filter.js
CHANGED
|
@@ -11,7 +11,7 @@ export class SmartFilter {
|
|
|
11
11
|
constructor(config, logger) {
|
|
12
12
|
// Apply defaults
|
|
13
13
|
this.config = {
|
|
14
|
-
enabled: config.enabled ??
|
|
14
|
+
enabled: config.enabled ?? true,
|
|
15
15
|
embedding: config.embedding ?? "auto",
|
|
16
16
|
topServers: config.topServers ?? 5,
|
|
17
17
|
hardCap: config.hardCap ?? 8,
|
|
@@ -388,7 +388,7 @@ const NOISE_WORDS = new Set([
|
|
|
388
388
|
"hey", "right", "alright", "fine", "got", "hmm", "hm",
|
|
389
389
|
]);
|
|
390
390
|
export const DEFAULTS = {
|
|
391
|
-
enabled:
|
|
391
|
+
enabled: true,
|
|
392
392
|
embedding: "keyword",
|
|
393
393
|
topServers: 5,
|
|
394
394
|
hardCap: 8,
|