[Streamable HTTP][Server] GET should open a server→client SSE listener
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Idoneità per principianti
- 48/100
Direzione di ricerca
Inizia in vendor/mcp/sdk/src/Server/Transport/StreamableHttpTransport.php, tracciando handleRequest(), handlePostRequest(), createStreamedResponse(), CallbackStream e flushOutgoingMessages(). Riutilizza la validazione della sessione esistente e i percorsi di streaming quando applicabile, quindi verifica che GET richieda una sessione valida, produca una risposta SSE, svuoti i messaggi in coda e termini correttamente alla disconnessione.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Problem
StreamableHttpTransport only handles OPTIONS, POST, and DELETE. GET falls into the match default arm and gets a 405 Method Not Allowed with Allow: POST, DELETE, OPTIONS.
vendor/mcp/sdk/src/Server/Transport/StreamableHttpTransport.php (current main):
return match ($request->getMethod()) {
'OPTIONS' => $this->handleOptionsRequest(),
'POST' => $this->handlePostRequest(),
'DELETE' => $this->handleDeleteRequest(),
default => $this->createErrorResponse(Error::forInvalidRequest('Method Not Allowed'), 405),
};
This contradicts both the MCP spec and the SDK's own CORS advertisement on the same class:
'Access-Control-Allow-Methods' => 'GET, POST, DELETE, OPTIONS',
Per the MCP Streamable HTTP transport spec, a client may issue GET against the MCP endpoint to open a long-lived SSE channel for server→client messages (notifications and server-initiated requests outside the request/response loop). Refusing the GET breaks that channel.
Observed impact
Spec-conformant clients open this listener immediately after initialize. The 405 kills the channel. In our deployment we see two session rows created in the session store on every fresh client startup — one for the working POST request/response loop, one orphaned from the failed listener that the client retries under a new session id.
Proposal
Add handleGetRequest() to StreamableHttpTransport and route GET to it from the match in handleRequest().
Behavior:
- Require
Mcp-Session-Id; without it return400(consistent withhandleDeleteRequest()). - Validate the session exists in the configured
SessionStoreInterface; on miss return404. - Open an SSE response (
Content-Type: text/event-stream) and stream:- any queued outgoing messages for this session (the same queue
flushOutgoingMessages()already drains increateStreamedResponse()); - server-initiated requests/notifications produced via the existing
Protocol/Fibermachinery.
- any queued outgoing messages for this session (the same queue
- Honor
Last-Event-IDfor resumption per the spec (can land in a follow-up; the initial PR can document the gap). - Cleanly terminate when the client disconnects.
The mechanics already exist — CallbackStream and flushOutgoingMessages() from PR #109 do the streaming half inside handlePostRequest(). The new method is essentially the same loop without a triggering POST body.
Backward compatibility
Purely additive. Clients that never issue GET see no change. The Access-Control-Allow-Methods header already advertises GET, so the surface is unchanged from the client's perspective — only the server's response to a method it claims to accept changes from 405 to a valid SSE stream.
Related
- PR #109 — added
CallbackStream+flushOutgoingMessages()for SSE insidehandlePostRequest. Provides the streaming primitives this proposal reuses. - Issue #226 — fixed the previous
500response for unsupported methods to405 + Allow. That work treatedGETas legitimately unsupported; this issue arguesGETis actually supported by the spec and should be wired up. - Issue #275 — separate concurrency race on the per-session outgoing message queue. Independent, but a working
GETlistener will exercise the same queue and would benefit from the same fix.
- Lingua principale
- PHP
- Stelle
- 1.6k
- Fork
- 173
- Merge medio
- 2g 49m
- PR unite (30g)
- 23
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di modelcontextprotocol/php-sdk
-
[Server] Handler type uses bare Closure, hard to decorate RegistryInterface under strict PHPStan ApertaServer
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 78/100
modelcontextprotocol/php-sdk#468 · 2 commenti ·
-
needs confirmation needs maintainer action Server
Difficoltà 2/5 1-3 ore Idoneità per principianti 68/100
modelcontextprotocol/php-sdk#398 · 1 reazione ·
-
enhancement
Difficoltà 2/5 1-3 ore Idoneità per principianti 68/100
modelcontextprotocol/php-sdk#370 ·
-
enhancement
Difficoltà 4/5 3-5 giorni Idoneità per principianti 55/100
modelcontextprotocol/php-sdk#510 · 1 commento ·
-
bug
Difficoltà 4/5 3-5 giorni Idoneità per principianti 45/100
modelcontextprotocol/php-sdk#504 ·
Tutte le issue di modelcontextprotocol/php-sdk
Issue simili
-
sync-en
Difficoltà 1/5 1-3 ore Idoneità per principianti 88/100
-
sync-en
Difficoltà 1/5 1-3 ore Idoneità per principianti 88/100
-
Перевод устарел
Difficoltà 1/5 1-3 ore Idoneità per principianti 88/100
-
status/awaiting_triage
Difficoltà 2/5 1-3 ore Idoneità per principianti 74/100
-
Issue: ready for confirmation Reported on 2.4.x
Difficoltà 2/5 1-3 ore Idoneità per principianti 88/100