@aiwerk/mcp-bridge 2.1.3 → 2.1.4
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
|
@@ -122,8 +122,10 @@ install_dependencies() {
|
|
|
122
122
|
echo "Pulling GitHub MCP server Docker image..."
|
|
123
123
|
docker pull ghcr.io/github/github-mcp-server ;;
|
|
124
124
|
linear)
|
|
125
|
-
|
|
126
|
-
|
|
125
|
+
local clone_dir="$HOME/.openclaw/mcp-servers/linear-mcp"
|
|
126
|
+
mkdir -p "$HOME/.openclaw/mcp-servers"
|
|
127
|
+
echo "Installing linear MCP server..."
|
|
128
|
+
npm install --prefix "$clone_dir" @anthropic-pb/linear-mcp-server ;;
|
|
127
129
|
wise)
|
|
128
130
|
# Clone outside plugin tree to avoid nested node_modules TS path conflicts
|
|
129
131
|
local clone_dir="$HOME/.openclaw/mcp-servers/wise-mcp"
|
|
@@ -152,11 +154,11 @@ install_dependencies() {
|
|
|
152
154
|
resolve_path_override() {
|
|
153
155
|
case "$SERVER_NAME" in
|
|
154
156
|
linear)
|
|
155
|
-
local
|
|
156
|
-
if [ -f "$
|
|
157
|
-
echo "$
|
|
157
|
+
local lin_dir="$HOME/.openclaw/mcp-servers/linear-mcp/node_modules/@anthropic-pb/linear-mcp-server"
|
|
158
|
+
if [ -f "$lin_dir/dist/index.js" ]; then
|
|
159
|
+
echo "$lin_dir/dist/index.js"
|
|
158
160
|
else
|
|
159
|
-
echo "$
|
|
161
|
+
echo "$lin_dir/build/index.js"
|
|
160
162
|
fi ;;
|
|
161
163
|
wise) echo "$HOME/.openclaw/mcp-servers/wise-mcp/dist/cli.js" ;;
|
|
162
164
|
hetzner) echo "$HOME/.openclaw/mcp-servers/mcp-hetzner/dist/index.js" ;;
|