This comprehensive implementation includes: - FastAPI backend with MCP server integration - React/TypeScript frontend with Vite - PostgreSQL database with Redis caching - Grafana/Prometheus monitoring stack - Docker Compose orchestration - Full MCP protocol support for Claude Code integration Features: - Agent discovery and management across network - Visual workflow editor and execution engine - Real-time task coordination and monitoring - Multi-model support with specialized agents - Distributed development task allocation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
614 lines
26 KiB
JavaScript
614 lines
26 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.StreamableHTTPServerTransport = void 0;
|
|
const types_js_1 = require("../types.js");
|
|
const raw_body_1 = __importDefault(require("raw-body"));
|
|
const content_type_1 = __importDefault(require("content-type"));
|
|
const node_crypto_1 = require("node:crypto");
|
|
const MAXIMUM_MESSAGE_SIZE = "4mb";
|
|
/**
|
|
* Server transport for Streamable HTTP: this implements the MCP Streamable HTTP transport specification.
|
|
* It supports both SSE streaming and direct HTTP responses.
|
|
*
|
|
* Usage example:
|
|
*
|
|
* ```typescript
|
|
* // Stateful mode - server sets the session ID
|
|
* const statefulTransport = new StreamableHTTPServerTransport({
|
|
* sessionIdGenerator: () => randomUUID(),
|
|
* });
|
|
*
|
|
* // Stateless mode - explicitly set session ID to undefined
|
|
* const statelessTransport = new StreamableHTTPServerTransport({
|
|
* sessionIdGenerator: undefined,
|
|
* });
|
|
*
|
|
* // Using with pre-parsed request body
|
|
* app.post('/mcp', (req, res) => {
|
|
* transport.handleRequest(req, res, req.body);
|
|
* });
|
|
* ```
|
|
*
|
|
* In stateful mode:
|
|
* - Session ID is generated and included in response headers
|
|
* - Session ID is always included in initialization responses
|
|
* - Requests with invalid session IDs are rejected with 404 Not Found
|
|
* - Non-initialization requests without a session ID are rejected with 400 Bad Request
|
|
* - State is maintained in-memory (connections, message history)
|
|
*
|
|
* In stateless mode:
|
|
* - No Session ID is included in any responses
|
|
* - No session validation is performed
|
|
*/
|
|
class StreamableHTTPServerTransport {
|
|
constructor(options) {
|
|
var _a, _b;
|
|
this._started = false;
|
|
this._streamMapping = new Map();
|
|
this._requestToStreamMapping = new Map();
|
|
this._requestResponseMap = new Map();
|
|
this._initialized = false;
|
|
this._enableJsonResponse = false;
|
|
this._standaloneSseStreamId = '_GET_stream';
|
|
this.sessionIdGenerator = options.sessionIdGenerator;
|
|
this._enableJsonResponse = (_a = options.enableJsonResponse) !== null && _a !== void 0 ? _a : false;
|
|
this._eventStore = options.eventStore;
|
|
this._onsessioninitialized = options.onsessioninitialized;
|
|
this._allowedHosts = options.allowedHosts;
|
|
this._allowedOrigins = options.allowedOrigins;
|
|
this._enableDnsRebindingProtection = (_b = options.enableDnsRebindingProtection) !== null && _b !== void 0 ? _b : false;
|
|
}
|
|
/**
|
|
* Starts the transport. This is required by the Transport interface but is a no-op
|
|
* for the Streamable HTTP transport as connections are managed per-request.
|
|
*/
|
|
async start() {
|
|
if (this._started) {
|
|
throw new Error("Transport already started");
|
|
}
|
|
this._started = true;
|
|
}
|
|
/**
|
|
* Validates request headers for DNS rebinding protection.
|
|
* @returns Error message if validation fails, undefined if validation passes.
|
|
*/
|
|
validateRequestHeaders(req) {
|
|
// Skip validation if protection is not enabled
|
|
if (!this._enableDnsRebindingProtection) {
|
|
return undefined;
|
|
}
|
|
// Validate Host header if allowedHosts is configured
|
|
if (this._allowedHosts && this._allowedHosts.length > 0) {
|
|
const hostHeader = req.headers.host;
|
|
if (!hostHeader || !this._allowedHosts.includes(hostHeader)) {
|
|
return `Invalid Host header: ${hostHeader}`;
|
|
}
|
|
}
|
|
// Validate Origin header if allowedOrigins is configured
|
|
if (this._allowedOrigins && this._allowedOrigins.length > 0) {
|
|
const originHeader = req.headers.origin;
|
|
if (!originHeader || !this._allowedOrigins.includes(originHeader)) {
|
|
return `Invalid Origin header: ${originHeader}`;
|
|
}
|
|
}
|
|
return undefined;
|
|
}
|
|
/**
|
|
* Handles an incoming HTTP request, whether GET or POST
|
|
*/
|
|
async handleRequest(req, res, parsedBody) {
|
|
var _a;
|
|
// Validate request headers for DNS rebinding protection
|
|
const validationError = this.validateRequestHeaders(req);
|
|
if (validationError) {
|
|
res.writeHead(403).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: validationError
|
|
},
|
|
id: null
|
|
}));
|
|
(_a = this.onerror) === null || _a === void 0 ? void 0 : _a.call(this, new Error(validationError));
|
|
return;
|
|
}
|
|
if (req.method === "POST") {
|
|
await this.handlePostRequest(req, res, parsedBody);
|
|
}
|
|
else if (req.method === "GET") {
|
|
await this.handleGetRequest(req, res);
|
|
}
|
|
else if (req.method === "DELETE") {
|
|
await this.handleDeleteRequest(req, res);
|
|
}
|
|
else {
|
|
await this.handleUnsupportedRequest(res);
|
|
}
|
|
}
|
|
/**
|
|
* Handles GET requests for SSE stream
|
|
*/
|
|
async handleGetRequest(req, res) {
|
|
// The client MUST include an Accept header, listing text/event-stream as a supported content type.
|
|
const acceptHeader = req.headers.accept;
|
|
if (!(acceptHeader === null || acceptHeader === void 0 ? void 0 : acceptHeader.includes("text/event-stream"))) {
|
|
res.writeHead(406).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Not Acceptable: Client must accept text/event-stream"
|
|
},
|
|
id: null
|
|
}));
|
|
return;
|
|
}
|
|
// If an Mcp-Session-Id is returned by the server during initialization,
|
|
// clients using the Streamable HTTP transport MUST include it
|
|
// in the Mcp-Session-Id header on all of their subsequent HTTP requests.
|
|
if (!this.validateSession(req, res)) {
|
|
return;
|
|
}
|
|
if (!this.validateProtocolVersion(req, res)) {
|
|
return;
|
|
}
|
|
// Handle resumability: check for Last-Event-ID header
|
|
if (this._eventStore) {
|
|
const lastEventId = req.headers['last-event-id'];
|
|
if (lastEventId) {
|
|
await this.replayEvents(lastEventId, res);
|
|
return;
|
|
}
|
|
}
|
|
// The server MUST either return Content-Type: text/event-stream in response to this HTTP GET,
|
|
// or else return HTTP 405 Method Not Allowed
|
|
const headers = {
|
|
"Content-Type": "text/event-stream",
|
|
"Cache-Control": "no-cache, no-transform",
|
|
Connection: "keep-alive",
|
|
};
|
|
// After initialization, always include the session ID if we have one
|
|
if (this.sessionId !== undefined) {
|
|
headers["mcp-session-id"] = this.sessionId;
|
|
}
|
|
// Check if there's already an active standalone SSE stream for this session
|
|
if (this._streamMapping.get(this._standaloneSseStreamId) !== undefined) {
|
|
// Only one GET SSE stream is allowed per session
|
|
res.writeHead(409).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Conflict: Only one SSE stream is allowed per session"
|
|
},
|
|
id: null
|
|
}));
|
|
return;
|
|
}
|
|
// We need to send headers immediately as messages will arrive much later,
|
|
// otherwise the client will just wait for the first message
|
|
res.writeHead(200, headers).flushHeaders();
|
|
// Assign the response to the standalone SSE stream
|
|
this._streamMapping.set(this._standaloneSseStreamId, res);
|
|
// Set up close handler for client disconnects
|
|
res.on("close", () => {
|
|
this._streamMapping.delete(this._standaloneSseStreamId);
|
|
});
|
|
}
|
|
/**
|
|
* Replays events that would have been sent after the specified event ID
|
|
* Only used when resumability is enabled
|
|
*/
|
|
async replayEvents(lastEventId, res) {
|
|
var _a, _b;
|
|
if (!this._eventStore) {
|
|
return;
|
|
}
|
|
try {
|
|
const headers = {
|
|
"Content-Type": "text/event-stream",
|
|
"Cache-Control": "no-cache, no-transform",
|
|
Connection: "keep-alive",
|
|
};
|
|
if (this.sessionId !== undefined) {
|
|
headers["mcp-session-id"] = this.sessionId;
|
|
}
|
|
res.writeHead(200, headers).flushHeaders();
|
|
const streamId = await ((_a = this._eventStore) === null || _a === void 0 ? void 0 : _a.replayEventsAfter(lastEventId, {
|
|
send: async (eventId, message) => {
|
|
var _a;
|
|
if (!this.writeSSEEvent(res, message, eventId)) {
|
|
(_a = this.onerror) === null || _a === void 0 ? void 0 : _a.call(this, new Error("Failed replay events"));
|
|
res.end();
|
|
}
|
|
}
|
|
}));
|
|
this._streamMapping.set(streamId, res);
|
|
}
|
|
catch (error) {
|
|
(_b = this.onerror) === null || _b === void 0 ? void 0 : _b.call(this, error);
|
|
}
|
|
}
|
|
/**
|
|
* Writes an event to the SSE stream with proper formatting
|
|
*/
|
|
writeSSEEvent(res, message, eventId) {
|
|
let eventData = `event: message\n`;
|
|
// Include event ID if provided - this is important for resumability
|
|
if (eventId) {
|
|
eventData += `id: ${eventId}\n`;
|
|
}
|
|
eventData += `data: ${JSON.stringify(message)}\n\n`;
|
|
return res.write(eventData);
|
|
}
|
|
/**
|
|
* Handles unsupported requests (PUT, PATCH, etc.)
|
|
*/
|
|
async handleUnsupportedRequest(res) {
|
|
res.writeHead(405, {
|
|
"Allow": "GET, POST, DELETE"
|
|
}).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Method not allowed."
|
|
},
|
|
id: null
|
|
}));
|
|
}
|
|
/**
|
|
* Handles POST requests containing JSON-RPC messages
|
|
*/
|
|
async handlePostRequest(req, res, parsedBody) {
|
|
var _a, _b, _c, _d, _e;
|
|
try {
|
|
// Validate the Accept header
|
|
const acceptHeader = req.headers.accept;
|
|
// The client MUST include an Accept header, listing both application/json and text/event-stream as supported content types.
|
|
if (!(acceptHeader === null || acceptHeader === void 0 ? void 0 : acceptHeader.includes("application/json")) || !acceptHeader.includes("text/event-stream")) {
|
|
res.writeHead(406).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Not Acceptable: Client must accept both application/json and text/event-stream"
|
|
},
|
|
id: null
|
|
}));
|
|
return;
|
|
}
|
|
const ct = req.headers["content-type"];
|
|
if (!ct || !ct.includes("application/json")) {
|
|
res.writeHead(415).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Unsupported Media Type: Content-Type must be application/json"
|
|
},
|
|
id: null
|
|
}));
|
|
return;
|
|
}
|
|
const authInfo = req.auth;
|
|
const requestInfo = { headers: req.headers };
|
|
let rawMessage;
|
|
if (parsedBody !== undefined) {
|
|
rawMessage = parsedBody;
|
|
}
|
|
else {
|
|
const parsedCt = content_type_1.default.parse(ct);
|
|
const body = await (0, raw_body_1.default)(req, {
|
|
limit: MAXIMUM_MESSAGE_SIZE,
|
|
encoding: (_a = parsedCt.parameters.charset) !== null && _a !== void 0 ? _a : "utf-8",
|
|
});
|
|
rawMessage = JSON.parse(body.toString());
|
|
}
|
|
let messages;
|
|
// handle batch and single messages
|
|
if (Array.isArray(rawMessage)) {
|
|
messages = rawMessage.map(msg => types_js_1.JSONRPCMessageSchema.parse(msg));
|
|
}
|
|
else {
|
|
messages = [types_js_1.JSONRPCMessageSchema.parse(rawMessage)];
|
|
}
|
|
// Check if this is an initialization request
|
|
// https://spec.modelcontextprotocol.io/specification/2025-03-26/basic/lifecycle/
|
|
const isInitializationRequest = messages.some(types_js_1.isInitializeRequest);
|
|
if (isInitializationRequest) {
|
|
// If it's a server with session management and the session ID is already set we should reject the request
|
|
// to avoid re-initialization.
|
|
if (this._initialized && this.sessionId !== undefined) {
|
|
res.writeHead(400).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32600,
|
|
message: "Invalid Request: Server already initialized"
|
|
},
|
|
id: null
|
|
}));
|
|
return;
|
|
}
|
|
if (messages.length > 1) {
|
|
res.writeHead(400).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32600,
|
|
message: "Invalid Request: Only one initialization request is allowed"
|
|
},
|
|
id: null
|
|
}));
|
|
return;
|
|
}
|
|
this.sessionId = (_b = this.sessionIdGenerator) === null || _b === void 0 ? void 0 : _b.call(this);
|
|
this._initialized = true;
|
|
// If we have a session ID and an onsessioninitialized handler, call it immediately
|
|
// This is needed in cases where the server needs to keep track of multiple sessions
|
|
if (this.sessionId && this._onsessioninitialized) {
|
|
this._onsessioninitialized(this.sessionId);
|
|
}
|
|
}
|
|
if (!isInitializationRequest) {
|
|
// If an Mcp-Session-Id is returned by the server during initialization,
|
|
// clients using the Streamable HTTP transport MUST include it
|
|
// in the Mcp-Session-Id header on all of their subsequent HTTP requests.
|
|
if (!this.validateSession(req, res)) {
|
|
return;
|
|
}
|
|
// Mcp-Protocol-Version header is required for all requests after initialization.
|
|
if (!this.validateProtocolVersion(req, res)) {
|
|
return;
|
|
}
|
|
}
|
|
// check if it contains requests
|
|
const hasRequests = messages.some(types_js_1.isJSONRPCRequest);
|
|
if (!hasRequests) {
|
|
// if it only contains notifications or responses, return 202
|
|
res.writeHead(202).end();
|
|
// handle each message
|
|
for (const message of messages) {
|
|
(_c = this.onmessage) === null || _c === void 0 ? void 0 : _c.call(this, message, { authInfo, requestInfo });
|
|
}
|
|
}
|
|
else if (hasRequests) {
|
|
// The default behavior is to use SSE streaming
|
|
// but in some cases server will return JSON responses
|
|
const streamId = (0, node_crypto_1.randomUUID)();
|
|
if (!this._enableJsonResponse) {
|
|
const headers = {
|
|
"Content-Type": "text/event-stream",
|
|
"Cache-Control": "no-cache",
|
|
Connection: "keep-alive",
|
|
};
|
|
// After initialization, always include the session ID if we have one
|
|
if (this.sessionId !== undefined) {
|
|
headers["mcp-session-id"] = this.sessionId;
|
|
}
|
|
res.writeHead(200, headers);
|
|
}
|
|
// Store the response for this request to send messages back through this connection
|
|
// We need to track by request ID to maintain the connection
|
|
for (const message of messages) {
|
|
if ((0, types_js_1.isJSONRPCRequest)(message)) {
|
|
this._streamMapping.set(streamId, res);
|
|
this._requestToStreamMapping.set(message.id, streamId);
|
|
}
|
|
}
|
|
// Set up close handler for client disconnects
|
|
res.on("close", () => {
|
|
this._streamMapping.delete(streamId);
|
|
});
|
|
// handle each message
|
|
for (const message of messages) {
|
|
(_d = this.onmessage) === null || _d === void 0 ? void 0 : _d.call(this, message, { authInfo, requestInfo });
|
|
}
|
|
// The server SHOULD NOT close the SSE stream before sending all JSON-RPC responses
|
|
// This will be handled by the send() method when responses are ready
|
|
}
|
|
}
|
|
catch (error) {
|
|
// return JSON-RPC formatted error
|
|
res.writeHead(400).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32700,
|
|
message: "Parse error",
|
|
data: String(error)
|
|
},
|
|
id: null
|
|
}));
|
|
(_e = this.onerror) === null || _e === void 0 ? void 0 : _e.call(this, error);
|
|
}
|
|
}
|
|
/**
|
|
* Handles DELETE requests to terminate sessions
|
|
*/
|
|
async handleDeleteRequest(req, res) {
|
|
if (!this.validateSession(req, res)) {
|
|
return;
|
|
}
|
|
if (!this.validateProtocolVersion(req, res)) {
|
|
return;
|
|
}
|
|
await this.close();
|
|
res.writeHead(200).end();
|
|
}
|
|
/**
|
|
* Validates session ID for non-initialization requests
|
|
* Returns true if the session is valid, false otherwise
|
|
*/
|
|
validateSession(req, res) {
|
|
if (this.sessionIdGenerator === undefined) {
|
|
// If the sessionIdGenerator ID is not set, the session management is disabled
|
|
// and we don't need to validate the session ID
|
|
return true;
|
|
}
|
|
if (!this._initialized) {
|
|
// If the server has not been initialized yet, reject all requests
|
|
res.writeHead(400).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Bad Request: Server not initialized"
|
|
},
|
|
id: null
|
|
}));
|
|
return false;
|
|
}
|
|
const sessionId = req.headers["mcp-session-id"];
|
|
if (!sessionId) {
|
|
// Non-initialization requests without a session ID should return 400 Bad Request
|
|
res.writeHead(400).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Bad Request: Mcp-Session-Id header is required"
|
|
},
|
|
id: null
|
|
}));
|
|
return false;
|
|
}
|
|
else if (Array.isArray(sessionId)) {
|
|
res.writeHead(400).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: "Bad Request: Mcp-Session-Id header must be a single value"
|
|
},
|
|
id: null
|
|
}));
|
|
return false;
|
|
}
|
|
else if (sessionId !== this.sessionId) {
|
|
// Reject requests with invalid session ID with 404 Not Found
|
|
res.writeHead(404).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32001,
|
|
message: "Session not found"
|
|
},
|
|
id: null
|
|
}));
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
validateProtocolVersion(req, res) {
|
|
var _a;
|
|
let protocolVersion = (_a = req.headers["mcp-protocol-version"]) !== null && _a !== void 0 ? _a : types_js_1.DEFAULT_NEGOTIATED_PROTOCOL_VERSION;
|
|
if (Array.isArray(protocolVersion)) {
|
|
protocolVersion = protocolVersion[protocolVersion.length - 1];
|
|
}
|
|
if (!types_js_1.SUPPORTED_PROTOCOL_VERSIONS.includes(protocolVersion)) {
|
|
res.writeHead(400).end(JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
error: {
|
|
code: -32000,
|
|
message: `Bad Request: Unsupported protocol version (supported versions: ${types_js_1.SUPPORTED_PROTOCOL_VERSIONS.join(", ")})`
|
|
},
|
|
id: null
|
|
}));
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
async close() {
|
|
var _a;
|
|
// Close all SSE connections
|
|
this._streamMapping.forEach((response) => {
|
|
response.end();
|
|
});
|
|
this._streamMapping.clear();
|
|
// Clear any pending responses
|
|
this._requestResponseMap.clear();
|
|
(_a = this.onclose) === null || _a === void 0 ? void 0 : _a.call(this);
|
|
}
|
|
async send(message, options) {
|
|
let requestId = options === null || options === void 0 ? void 0 : options.relatedRequestId;
|
|
if ((0, types_js_1.isJSONRPCResponse)(message) || (0, types_js_1.isJSONRPCError)(message)) {
|
|
// If the message is a response, use the request ID from the message
|
|
requestId = message.id;
|
|
}
|
|
// Check if this message should be sent on the standalone SSE stream (no request ID)
|
|
// Ignore notifications from tools (which have relatedRequestId set)
|
|
// Those will be sent via dedicated response SSE streams
|
|
if (requestId === undefined) {
|
|
// For standalone SSE streams, we can only send requests and notifications
|
|
if ((0, types_js_1.isJSONRPCResponse)(message) || (0, types_js_1.isJSONRPCError)(message)) {
|
|
throw new Error("Cannot send a response on a standalone SSE stream unless resuming a previous client request");
|
|
}
|
|
const standaloneSse = this._streamMapping.get(this._standaloneSseStreamId);
|
|
if (standaloneSse === undefined) {
|
|
// The spec says the server MAY send messages on the stream, so it's ok to discard if no stream
|
|
return;
|
|
}
|
|
// Generate and store event ID if event store is provided
|
|
let eventId;
|
|
if (this._eventStore) {
|
|
// Stores the event and gets the generated event ID
|
|
eventId = await this._eventStore.storeEvent(this._standaloneSseStreamId, message);
|
|
}
|
|
// Send the message to the standalone SSE stream
|
|
this.writeSSEEvent(standaloneSse, message, eventId);
|
|
return;
|
|
}
|
|
// Get the response for this request
|
|
const streamId = this._requestToStreamMapping.get(requestId);
|
|
const response = this._streamMapping.get(streamId);
|
|
if (!streamId) {
|
|
throw new Error(`No connection established for request ID: ${String(requestId)}`);
|
|
}
|
|
if (!this._enableJsonResponse) {
|
|
// For SSE responses, generate event ID if event store is provided
|
|
let eventId;
|
|
if (this._eventStore) {
|
|
eventId = await this._eventStore.storeEvent(streamId, message);
|
|
}
|
|
if (response) {
|
|
// Write the event to the response stream
|
|
this.writeSSEEvent(response, message, eventId);
|
|
}
|
|
}
|
|
if ((0, types_js_1.isJSONRPCResponse)(message) || (0, types_js_1.isJSONRPCError)(message)) {
|
|
this._requestResponseMap.set(requestId, message);
|
|
const relatedIds = Array.from(this._requestToStreamMapping.entries())
|
|
.filter(([_, streamId]) => this._streamMapping.get(streamId) === response)
|
|
.map(([id]) => id);
|
|
// Check if we have responses for all requests using this connection
|
|
const allResponsesReady = relatedIds.every(id => this._requestResponseMap.has(id));
|
|
if (allResponsesReady) {
|
|
if (!response) {
|
|
throw new Error(`No connection established for request ID: ${String(requestId)}`);
|
|
}
|
|
if (this._enableJsonResponse) {
|
|
// All responses ready, send as JSON
|
|
const headers = {
|
|
'Content-Type': 'application/json',
|
|
};
|
|
if (this.sessionId !== undefined) {
|
|
headers['mcp-session-id'] = this.sessionId;
|
|
}
|
|
const responses = relatedIds
|
|
.map(id => this._requestResponseMap.get(id));
|
|
response.writeHead(200, headers);
|
|
if (responses.length === 1) {
|
|
response.end(JSON.stringify(responses[0]));
|
|
}
|
|
else {
|
|
response.end(JSON.stringify(responses));
|
|
}
|
|
}
|
|
else {
|
|
// End the SSE stream
|
|
response.end();
|
|
}
|
|
// Clean up
|
|
for (const id of relatedIds) {
|
|
this._requestResponseMap.delete(id);
|
|
this._requestToStreamMapping.delete(id);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
exports.StreamableHTTPServerTransport = StreamableHTTPServerTransport;
|
|
//# sourceMappingURL=streamableHttp.js.map
|