forked from sansan0/TrendRadar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart-http.sh
More file actions
21 lines (17 loc) ยท 729 Bytes
/
start-http.sh
File metadata and controls
21 lines (17 loc) ยท 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
echo "โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ"
echo "โ TrendRadar MCP Server (HTTP ๆจกๅผ) โ"
echo "โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ"
echo ""
# ๆฃๆฅ่ๆ็ฏๅข
if [ ! -d ".venv" ]; then
echo "โ [้่ฏฏ] ่ๆ็ฏๅขๆชๆพๅฐ"
echo "่ฏทๅ
่ฟ่ก ./setup-mac.sh ่ฟ่ก้จ็ฝฒ"
echo ""
exit 1
fi
echo "[ๆจกๅผ] HTTP (้ๅ่ฟ็จ่ฎฟ้ฎ)"
echo "[ๅฐๅ] http://localhost:3333/mcp"
echo "[ๆ็คบ] ๆ Ctrl+C ๅๆญขๆๅก"
echo ""
uv run python -m mcp_server.server --transport http --host 0.0.0.0 --port 3333