Skip to main content
Glama

AutoBuildMCP

by admica
GPL 3.0
1
  • Apple
build.bat1.4 kB
@echo off setlocal EnableDelayedExpansion :: Check for Python 3.8 or higher echo Checking for Python 3.8 or higher... python --version > temp.txt 2>&1 set /p PYTHON_VERSION=<temp.txt del temp.txt echo Python version: %PYTHON_VERSION% for /f "tokens=2 delims=. " %%a in ("%PYTHON_VERSION%") do ( set MAJOR=%%a ) for /f "tokens=3 delims=. " %%a in ("%PYTHON_VERSION%") do ( set MINOR=%%a ) :: Remove old venv if exists if exist venv ( echo Removing existing 'venv' directory... rmdir /s /q venv echo Removed existing virtual environment. ) :: Create new venv echo Creating a new virtual environment... python -m venv venv if %ERRORLEVEL% NEQ 0 ( echo Failed to create virtual environment. exit /b 1 ) echo Virtual environment created successfully. :: Activate venv and install dependencies call venv\Scripts\activate.bat if exist requirements.txt ( echo Installing dependencies from requirements.txt... python.exe -m pip install --upgrade pip pip install --upgrade setuptools wheel pip install -r requirements.txt if %ERRORLEVEL% NEQ 0 ( echo Failed to install dependencies. Check requirements.txt for conflicts or network issues. exit /b 1 ) echo Dependencies installed successfully. ) else ( echo No requirements.txt found, skipping dependency installation. ) echo Build environment setup complete and ready! endlocal

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/admica/AutoBuildMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server