@echo off
setlocal
REM Get the directory where the script is located
set "SCRIPT_DIR=%~dp0"
REM Activate virtual environment
if exist "%SCRIPT_DIR%.venv\Scripts\activate.bat" (
call "%SCRIPT_DIR%.venv\Scripts\activate.bat"
) else (
echo Virtual environment not found. Please run the installation steps in the README.
exit /b 1
)
REM Load environment variables from .env file
if exist "%SCRIPT_DIR%.env" (
for /f "tokens=*" %%a in (%SCRIPT_DIR%.env) do (
set %%a
)
) else (
echo .env file not found. Please create one with your credentials.
exit /b 1
)
REM Run the MCP server script
python "%SCRIPT_DIR%server.py"
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/FastlanePython/fastlanepy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server