Files
helm/mcp-proxy/start.sh
T
2026-05-29 13:09:23 +00:00

15 lines
289 B
Bash

#!/bin/sh
sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
apk add --no-cache npm uv
which node
which npm
which npx
which uvx
catatonit -- mcp-proxy \
--named-server-config /config.json \
--host '0.0.0.0' \
--port '8080' \
--allow-origin '*'