@echo off
REM Futurama Quote Machine MCP Server Launcher for Windows
REM This script activates the virtual environment and runs the MCP server
REM Get the directory where this script is located
set SCRIPT_DIR=%~dp0
REM Path to the virtual environment
set VENV_PATH=%SCRIPT_DIR%venv
REM Path to the Python server script
set SERVER_SCRIPT=%SCRIPT_DIR%server.py
REM Check if virtual environment exists
if not exist "%VENV_PATH%" (
echo Error: Virtual environment not found at %VENV_PATH% 1>&2
echo Please ensure the virtual environment is set up correctly. 1>&2
exit /b 1
)
REM Check if server script exists
if not exist "%SERVER_SCRIPT%" (
echo Error: Server script not found at %SERVER_SCRIPT% 1>&2
exit /b 1
)
REM Activate virtual environment and run the server
call "%VENV_PATH%\Scripts\activate.bat"
REM Verify Python and required packages are available
python -c "import mcp, httpx" 2>nul
if errorlevel 1 (
echo Error: Required packages (mcp, httpx) not found in virtual environment 1>&2
echo Please run: pip install mcp httpx 1>&2
exit /b 1
)
REM Run the MCP server
python "%SERVER_SCRIPT%"
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/BitsofJeremy/fqm_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server