We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SafetyReportProject/mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
serve_ui.sh•575 B
#!/bin/bash
# Simple HTTP server to serve MCP Server UI
# This serves the UI on port 3001
# Get local IP address
LOCAL_IP=$(ipconfig getifaddr en0 2>/dev/null || hostname -I 2>/dev/null | awk '{print $1}' || echo "0.0.0.0")
echo "🌐 Starting MCP Server UI on all network interfaces (0.0.0.0:3001)"
echo ""
echo "📍 Access URLs:"
echo " Local: http://localhost:3001/ui.html"
echo " Network: http://${LOCAL_IP}:3001/ui.html"
echo ""
echo "Press Ctrl+C to stop"
echo ""
# Use Python's built-in HTTP server (binds to 0.0.0.0 by default)
python3 -m http.server 3001