@aiwerk/mcp-bridge 2.1.2 → 2.1.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiwerk/mcp-bridge",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "Standalone MCP server that multiplexes multiple MCP servers into one interface",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/src/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"build": "tsc",
|
|
45
45
|
"test": "node --import tsx --test tests/*.test.ts",
|
|
46
46
|
"typecheck": "tsc --noEmit",
|
|
47
|
-
"prepublishOnly": "
|
|
47
|
+
"prepublishOnly": "bash scripts/validate-recipes.sh",
|
|
48
48
|
"validate-recipe": "npx tsx bin/validate-recipe.ts",
|
|
49
49
|
"lint": "eslint src/",
|
|
50
50
|
"format": "prettier --write src/",
|
|
@@ -125,7 +125,9 @@ install_dependencies() {
|
|
|
125
125
|
echo "Installing @anthropic-pb/linear-mcp-server globally..."
|
|
126
126
|
npm install -g @anthropic-pb/linear-mcp-server ;;
|
|
127
127
|
wise)
|
|
128
|
-
|
|
128
|
+
# Clone outside plugin tree to avoid nested node_modules TS path conflicts
|
|
129
|
+
local clone_dir="$HOME/.openclaw/mcp-servers/wise-mcp"
|
|
130
|
+
mkdir -p "$HOME/.openclaw/mcp-servers"
|
|
129
131
|
if [ -d "$clone_dir/.git" ]; then
|
|
130
132
|
echo "Updating wise mcp-server..."; git -C "$clone_dir" pull --ff-only
|
|
131
133
|
else
|
|
@@ -134,7 +136,9 @@ install_dependencies() {
|
|
|
134
136
|
echo "Building wise mcp-server..."
|
|
135
137
|
(cd "$clone_dir" && npm install && npm run build) ;;
|
|
136
138
|
hetzner)
|
|
137
|
-
|
|
139
|
+
# Clone outside plugin tree to avoid nested node_modules TS path conflicts
|
|
140
|
+
local clone_dir="$HOME/.openclaw/mcp-servers/mcp-hetzner"
|
|
141
|
+
mkdir -p "$HOME/.openclaw/mcp-servers"
|
|
138
142
|
if [ -d "$clone_dir/.git" ]; then
|
|
139
143
|
echo "Updating hetzner mcp-server..."; git -C "$clone_dir" pull --ff-only
|
|
140
144
|
else
|
|
@@ -154,8 +158,8 @@ resolve_path_override() {
|
|
|
154
158
|
else
|
|
155
159
|
echo "$npm_root/@anthropic-pb/linear-mcp-server/build/index.js"
|
|
156
160
|
fi ;;
|
|
157
|
-
wise) echo "$
|
|
158
|
-
hetzner) echo "$
|
|
161
|
+
wise) echo "$HOME/.openclaw/mcp-servers/wise-mcp/dist/cli.js" ;;
|
|
162
|
+
hetzner) echo "$HOME/.openclaw/mcp-servers/mcp-hetzner/dist/index.js" ;;
|
|
159
163
|
*) echo "" ;;
|
|
160
164
|
esac
|
|
161
165
|
}
|