@echo off
echo ============================================
echo MCP SERVER RESTART UTILITY
echo ============================================
echo.
echo Step 1: Stopping any existing servers on port 8000...
REM Kill any process using port 8000
for /f "tokens=5" %%a in ('netstat -ano ^| findstr :8000') do (
echo Killing process %%a
taskkill //PID %%a //F >nul 2>&1
)
echo.
echo Step 2: Waiting for port to be released...
timeout /t 2 /nobreak >nul
echo.
echo Step 3: Starting MCP server on port 8000...
cd /d "%~dp0"
py mcp_server_hybrid.py --http 8000
echo.
echo Server stopped.
pause
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MelaLitho/MCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server