Skip to main content
Glama

Web Proxy MCP Server

by mako10k
curl-proxy-setup.sh878 B
#!/bin/bash # cURL Proxy Testing Script # Generated by Web Proxy MCP Server PROXY_SERVER="172.21.255.3:8080" echo "Testing proxy with cURL..." echo "Proxy server: $PROXY_SERVER" echo "Monitored domains: 4" echo "" # Function to test a URL through proxy test_proxy() { local url="$1" echo "Testing: $url" curl --proxy "$PROXY_SERVER" \ --connect-timeout 10 \ --max-time 30 \ --silent \ --head \ "$url" && echo "✓ Success" || echo "✗ Failed" echo "" } # Test examples curl --proxy "172.21.255.3:8080" "https://httpbin.org" curl --proxy "172.21.255.3:8080" "https://jsonplaceholder.typicode.com" curl --proxy "172.21.255.3:8080" "https://example.com" # Interactive mode echo "Enter URLs to test (Ctrl+C to exit):" while read -p "URL: " url; do if [ ! -z "$url" ]; then test_proxy "$url" fi done

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mako10k/mcp-web-proxy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server