We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffd5b7b + 1b45c43 commit 0762879Copy full SHA for 0762879
README.md
@@ -138,6 +138,11 @@ end
138
> so it must run in a single process. Use a single-process server (e.g., Puma with `workers 0`).
139
> Multi-process configurations (Unicorn, or Puma with `workers > 0`) fork separate processes that
140
> do not share memory, which breaks session management and SSE connections.
141
+>
142
+> When running multiple server instances behind a load balancer, configure your load balancer to use
143
+> sticky sessions (session affinity) so that requests with the same `Mcp-Session-Id` header are always
144
+> routed to the same instance.
145
146
> Stateless mode (`stateless: true`) does not use sessions and works with any server configuration.
147
148
### Configuration
0 commit comments