We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/darrentmorgan/hostaway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start-ssh-tunnel.sh•524 B
#!/bin/bash
# Temporary SSH Tunnel to access MCP server while DNS propagates
# This creates a local tunnel to the remote MCP server
echo "🔧 Starting SSH tunnel to Hostaway MCP server..."
echo "This will tunnel localhost:8000 → remote server:8080"
echo ""
echo "Keep this terminal window open while using Claude."
echo "Press Ctrl+C to stop the tunnel."
echo ""
ssh -i ~/.ssh/hostaway-deploy \
-L 8000:localhost:8080 \
-N \
-o ServerAliveInterval=60 \
-o ServerAliveCountMax=3 \
root@72.60.233.157