We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d2cd01 + a71db26 commit 841462fCopy full SHA for 841462f
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name='mcp-sse-proxy',
5
- version='0.1.3',
+ version='0.1.4',
6
description='Proxy between MCP server using STDIO transport and client using SSE transport',
7
author='Artur Zdolinski',
8
author_email='artur@zdolinski.com',
src/mcp_sse_proxy.py
@@ -220,7 +220,7 @@ async def sse_to_stdout(ping_interval: int):
220
continue
221
222
logger.debug("Received SSE chunk of size: %d", len(chunk))
223
- buffer += chunk
+ buffer += chunk.replace("\r\n", "\n")
224
while "\n\n" in buffer:
225
event, buffer = buffer.split("\n\n", 1)
226
event_lines = event.strip().split("\n")
0 commit comments