We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheLunarCompany/lunar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
if [ "$TLS_PASSTHROUGH_ON" = "false" ] || [ -z "$TLS_PASSTHROUGH_ON" ]; then
exit 0
else
if ! pgrep -x "squid" > /dev/null; then
echo "Starting TLS passthrough on port: ${TLS_PASSTHROUGH_PORT:-8001}"
squid -N > /dev/null 2>&1
fi
fi