@echo off
echo ========================================
echo MCP Quoting System - First Time Setup
echo ========================================
echo.
echo This will:
echo 1. Install all dependencies
echo 2. Create .env file from template
echo 3. Initialize data files
echo 4. Build the project
echo.
pause
echo.
echo [1/4] Installing dependencies...
call npm install
echo.
echo [2/4] Setting up environment file...
if not exist ".env" (
if exist ".env.example" (
copy ".env.example" ".env"
echo Created .env file from template
echo IMPORTANT: Edit .env file with your SMTP settings!
) else (
echo WARNING: .env.example not found
)
) else (
echo .env file already exists
)
echo.
echo [3/4] Initializing data directory...
if not exist "data\" mkdir data
if not exist "data\quotes.json" (
if exist "data\sample-quotes.json" (
copy "data\sample-quotes.json" "data\quotes.json"
echo Copied sample quotes to active database
) else (
echo [] > "data\quotes.json"
echo Created empty quotes database
)
) else (
echo quotes.json already exists
)
if not exist "data\evaluations.json" (
echo [] > "data\evaluations.json"
echo Created evaluations file
)
echo.
echo [4/4] Building project...
call npm run build
echo.
echo ========================================
echo Setup complete!
echo.
echo Next steps:
echo 1. Edit .env file with your settings (if needed)
echo 2. Run start-dev.bat to start development server
echo 3. Run start-prod.bat to start production server
echo.
echo ========================================
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/r-long/mcp-quoting-system'
If you have feedback or need assistance with the MCP directory API, please join our Discord server