We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/earchibald/amicus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start-dashboard.sh•741 B
#!/bin/bash
# Start the Amicus Dashboard with optional WebSocket server
set -e
cd "$(dirname "$0")/.."
echo "🧠 Amicus Synapse Dashboard"
echo "=============================="
echo ""
# Check if WebSocket server is running
if ! nc -z localhost 8765 2>/dev/null; then
echo "⚠️ WebSocket server not detected on port 8765"
echo ""
echo "Starting WebSocket server in background..."
python -m src.amicus.websocket_server &
WS_PID=$!
echo "✓ WebSocket server started (PID: $WS_PID)"
sleep 2
else
echo "✓ WebSocket server already running on port 8765"
fi
echo ""
echo "Starting dashboard on http://localhost:5000"
echo "Press Ctrl+C to stop"
echo ""
# Start dashboard
python src/amicus/dashboard.py