We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dorukardahan/domain-search-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tunnel-qwen.sh•749 B
#!/bin/bash
#
# SSH Tunnel to Qwen Inference Server
#
# This creates a secure tunnel from localhost:8000 to the VPS Qwen server.
# Run this in the background before starting the MCP server.
#
set -e
VPS_HOST="95.111.240.197"
VPS_USER="admin"
SSH_KEY="/tmp/qwen_vps_key"
LOCAL_PORT="8000"
REMOTE_PORT="8000"
echo "🔐 Setting up SSH tunnel to Qwen inference server..."
echo " Local: http://localhost:${LOCAL_PORT}"
echo " Remote: ${VPS_USER}@${VPS_HOST}:${REMOTE_PORT}"
echo ""
echo "Press Ctrl+C to stop the tunnel"
echo ""
# Create tunnel (this blocks until Ctrl+C)
ssh -i "$SSH_KEY" \
-L "${LOCAL_PORT}:127.0.0.1:${REMOTE_PORT}" \
-N \
-o ServerAliveInterval=60 \
-o ServerAliveCountMax=3 \
"${VPS_USER}@${VPS_HOST}"