Artem Cherednichenko
Artem Cherednichenko
I seen this one but was not sure it will actually allow extending sessions storage, thanks for confirming👍
@ln-12 is your use case compeltely stateless? thanks for providing the link to the discussion https://github.com/modelcontextprotocol/typescript-sdk/issues/330, it is ultimatelly the same problem we are trying to solve. Unfortnuately we can...
That's makes complete sense to me as well, with sessions split to a separate interface, keeping session ID in conn makes not much sense anymore
Thanks for the update > How can a distributed server make server->client requests, using the streamable transport? Since the subsequent POST containing the response may be routed to a different...
> We can perhaps make it an implementation restriction that any server->client calls fail in stateless or distributed mode. We certainly need to implement this for stateless mode. As long...
> For context, in the GitHub MCP server we are primarily using session state for observability, without session state there is no easy way to attribute subsequent requests/tool calls etc...
@omgitsads do you also not maintain true persistent long running connection in your particular case, so each subsequent request in session may land on any container in a cluster? I...