15 lines
328 B
Bash
15 lines
328 B
Bash
#!/bin/bash
|
|
# rustfs-s3-toolkit MCP Server Docker Start Script
|
|
|
|
set -e
|
|
|
|
# 颜色定义
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
BLUE='\033[0;34m'
|
|
NC='\033[0m' # No Color
|
|
|
|
echo -e "${BLUE}🚀 rustfs-s3-toolkit MCP Server Starting...${NC}"
|
|
|
|
source .venv/bin/activate && python src/rustfs_s3_toolkit/mcp_server.py |