chore(extension): support running in http mode (#717)

This commit is contained in:
Yury Semikhatsky
2025-07-19 08:30:29 -07:00
committed by GitHub
parent 29711d07d3
commit e3df209b96
6 changed files with 53 additions and 44 deletions

View File

@@ -30,7 +30,7 @@ import type { Server } from './server.js';
import type { Connection } from './connection.js';
export async function startStdioTransport(server: Server) {
return await server.createConnection(new StdioServerTransport());
await server.createConnection(new StdioServerTransport());
}
const testDebug = debug('pw:mcp:test');