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.
1 parent c6def34 commit 0734b33Copy full SHA for 0734b33
mcp/http.ts
@@ -19,7 +19,7 @@ export class HttpServerTransport extends StreamableHTTPServerTransport {
19
});
20
}
21
22
- async handleMessage(req: Request) {
+ async handleMessage(req: Request): Promise<Response> {
23
const { req: nodeReq, res } = toReqRes(req);
24
await super.handleRequest(nodeReq, res, await req.json());
25
return toFetchResponse(res);
0 commit comments