We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MichaelTroelsen/tdz-c64-knowledge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
launch-gui.bat•1.3 kB
@echo off
REM Launch TDZ C64 Knowledge Base GUI
REM Double-click this file to open the admin interface
echo ========================================
echo TDZ C64 Knowledge Base - Admin GUI
echo ========================================
echo.
echo Enabling all features:
echo - FTS5 Full-Text Search
echo - Semantic Search (Embeddings)
echo - BM25 Ranking
echo - Query Preprocessing
echo.
echo Starting Streamlit server...
echo The GUI will open in your browser automatically.
echo.
echo To stop the server, close this window or press Ctrl+C
echo ========================================
echo.
REM Enable all advanced features
set USE_FTS5=1
set USE_SEMANTIC_SEARCH=1
set USE_BM25=1
set USE_QUERY_PREPROCESSING=1
REM Activate virtual environment and run Streamlit
call .venv\Scripts\activate.bat
python -m streamlit run admin_gui.py
REM Keep window open if there's an error
if errorlevel 1 (
echo.
echo ========================================
echo ERROR: Failed to start GUI
echo ========================================
echo.
echo Possible fixes:
echo 1. Make sure virtual environment is set up: .venv\Scripts\activate
echo 2. Install Streamlit: pip install streamlit
echo 3. Check server.py and admin_gui.py are in this directory
echo.
pause
)