Learn about the two primary transport mechanisms for communication between Sixth and MCP servers: Standard Input/Output (STDIO) and Server-Sent Events (SSE). Each has distinct characteristics, advantages, and use cases.
Consideration | STDIO | SSE |
---|---|---|
Location | Local machine only | Local or remote |
Clients | Single client | Multiple clients |
Performance | Lower latency | Higher latency (network overhead) |
Setup Complexity | Simpler | More complex (requires HTTP server) |
Security | Inherently secure | Requires explicit security measures |
Network Access | Not needed | Required |
Scalability | Limited to local machine | Can distribute across network |
Deployment | Per-user installation | Centralized installation |
Updates | Distributed updates | Centralized updates |
Resource Usage | Uses client resources | Uses server resources |
Dependencies | Client-side dependencies | Server-side dependencies |