chore: revert back to initial instructions for the most part

This commit is contained in:
2026-05-31 11:12:39 -05:00
parent f7d59cad03
commit 0cf9df2bb6
5 changed files with 105 additions and 179 deletions
-2
View File
@@ -22,8 +22,6 @@ async function buildMcpClient(mcpServerUrl: string): Promise<Client> {
{ capabilities: {} },
);
const transport = new StreamableHTTPClientTransport(new URL(mcpServerUrl));
// @ts-expect-error — StreamableHTTPClientTransport.sessionId is string|undefined but Transport
// expects string; this is an @modelcontextprotocol/sdk internal type mismatch, not our bug.
await client.connect(transport);
return client;
}