You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEBUG:mcp.server.sse:Setting up SSE connection
DEBUG:mcp.server.sse:Created new session with ID: 592f37fb-6b75-4df1-ac4e-e399d15a59c1
DEBUG:mcp.server.sse:Starting SSE response task
DEBUG:mcp.server.sse:Yielding read and write streams
INFO: 127.0.0.1:49914 - "GET / HTTP/1.1" 200 OK
DEBUG:mcp.server.sse:Starting SSE writer
DEBUG:mcp.server.sse:Sent endpoint event: /messages?session_id=592f37fb6b754df1ac4ee399d15a59c1
DEBUG:sse_starlette.sse:chunk: b'event: endpoint\r\ndata: /messages?session_id=592f37fb6b754df1ac4ee399d15a59c1\r\n\r\n'
INFO: 127.0.0.1:49917 - "POST //messages?session_id=592f37fb6b754df1ac4ee399d15a59c1 HTTP/1.1" 404 Not Found
To Reproduce
Steps to reproduce the behavior:
client code:
suspend fun connect(h: String, p: Int): Client {
val client = Client(Implementation("test", "1.0.0"))
val transport = HttpClient {
install(io.ktor.client.plugins.sse.SSE)
}.mcpSseTransport {
url {
host = h
port = p
}
}
client.connect(transport)
return client
}
Expected behavior
A clear and concise description of what you expected to happen.
Logs
If applicable, add logs to help explain your problem.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
I set the git mcp server up with sse, and test with MCP Inspector success
the server log:
but use kotlin-sdk connect failed:
server log:
To Reproduce
Steps to reproduce the behavior:
client code:
Expected behavior
A clear and concise description of what you expected to happen.
Logs
If applicable, add logs to help explain your problem.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: