We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ganpare/gpt-sovits-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start_server.bat•1.17 kB
@echo off
REM GPT-SoVITS MCP Server startup script for Windows
echo Starting GPT-SoVITS MCP Server...
echo.
REM Check if Python is installed
python --version >nul 2>&1
if errorlevel 1 (
echo Error: Python is not installed or not in PATH
echo Please install Python 3.11 or later from https://python.org
pause
exit /b 1
)
REM Check if required packages are installed
python -c "import fastapi_mcp" >nul 2>&1
if errorlevel 1 (
echo Installing required packages...
python -m pip install -r requirements.txt
if errorlevel 1 (
echo Error: Failed to install requirements
pause
exit /b 1
)
)
REM Set environment variables if not already set
if not defined SOVITS_VOICES_PATH (
set SOVITS_VOICES_PATH=voices\characters
)
if not defined HOST (
set HOST=127.0.0.1
)
if not defined PORT (
set PORT=8000
)
echo Configuration:
echo - Host: %HOST%
echo - Port: %PORT%
echo - Voices Path: %SOVITS_VOICES_PATH%
echo.
REM Start the server
echo Starting FastAPI-MCP server...
python fastapi_mcp_server.py --host %HOST% --port %PORT%
if errorlevel 1 (
echo.
echo Server stopped with error
pause
)