Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix stream not available error for simple client.tool call #238

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 25 additions & 12 deletions src/server/sse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ export class SSEServerTransport implements Transport {
});
}

/**
/**
* Handles incoming POST messages.
*
* This should be called when a POST request is made to send a message to the server.
*/

async handlePostMessage(
req: IncomingMessage,
res: ServerResponse,
Expand All @@ -76,17 +77,29 @@ export class SSEServerTransport implements Transport {
throw new Error(message);
}

let body: string | unknown;
let body: unknown;
try {
const ct = contentType.parse(req.headers["content-type"] ?? "");
if (ct.type !== "application/json") {
throw new Error(`Unsupported content-type: ${ct}`);
// Handle for case when parsed body if available
if (parsedBody !== undefined) {
body = parsedBody;
} else if ((req as any).body !== undefined) {
// Look for body from req object
body = (req as any).body;
} else {
// Fallback
const ct = contentType.parse(req.headers["content-type"] ?? "");
if (ct.type !== "application/json") {
throw new Error(`Unsupported content-type: ${ct}`);
}

const rawBody = await getRawBody(req, {
limit: MAXIMUM_MESSAGE_SIZE,
encoding: ct.parameters.charset ?? "utf-8",
});

// Parse string body as JSON
body = JSON.parse(rawBody.toString());
}

body = parsedBody ?? await getRawBody(req, {
limit: MAXIMUM_MESSAGE_SIZE,
encoding: ct.parameters.charset ?? "utf-8",
});
} catch (error) {
res.writeHead(400).end(String(error));
this.onerror?.(error as Error);
Expand All @@ -95,8 +108,8 @@ export class SSEServerTransport implements Transport {

try {
await this.handleMessage(typeof body === 'string' ? JSON.parse(body) : body);
} catch {
res.writeHead(400).end(`Invalid message: ${body}`);
} catch (error) {
res.writeHead(400).end(`Invalid message: ${JSON.stringify(body)}`);
return;
}

Expand Down