We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Big0290/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# π Launch Script for NEW User-Friendly Frontend
# MCP Conversation Intelligence System
echo "π Launching NEW User-Friendly Frontend..."
echo "=========================================="
# Check if virtual environment exists
if [ ! -d ".venv" ]; then
echo "β Virtual environment not found!"
echo "Please run: python -m venv .venv && source .venv/bin/activate && pip install -r requirements_ui.txt"
exit 1
fi
# Activate virtual environment
echo "π§ Activating virtual environment..."
source .venv/bin/activate
# Check if required packages are installed
echo "π¦ Checking dependencies..."
python -c "import streamlit, pandas, plotly" 2>/dev/null
if [ $? -ne 0 ]; then
echo "β Missing dependencies!"
echo "Installing required packages..."
pip install -r requirements_ui.txt
fi
# Launch the new frontend
echo "π Starting NEW User-Friendly Frontend..."
echo "π URL: http://localhost:8501"
echo "π Press Ctrl+C to stop"
echo ""
streamlit run context_ui_new.py --server.port 8501 --server.address localhost