Connect to MCP servers remotely using HTTP, WebSocket, or SSE protocols
Use Case | Recommended Protocol | Reason |
---|---|---|
Web APIs | HTTP/HTTPS | Standard, cacheable, firewall-friendly |
Real-time Apps | WebSocket | Bidirectional, low-latency communication |
Live Dashboards | SSE | Server push, automatic reconnection |
Mobile Apps | HTTP/HTTPS | Better battery life, intermittent connectivity |
High-frequency Tools | WebSocket | Persistent connection, lower overhead |
Enterprise Integration | HTTP/HTTPS | Security policies, monitoring tools |
Microservices | HTTP/HTTPS | Service mesh compatibility, load balancing |