mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-07-31 01:36:15 -04:00
Introduces an HTTP transport option to serve multipleagents from a single process. Each connection is routed to its own isolated browsing session using the `Mcp-Session-Id` header. Also adds new session management tools (`session_new`, `session_list`, `session_close`) and refactors the MCP server to support multiple V8 isolates with parking.
12 lines
311 B
Zig
12 lines
311 B
Zig
const std = @import("std");
|
|
|
|
pub const protocol = @import("mcp/protocol.zig");
|
|
pub const Version = protocol.Version;
|
|
pub const router = @import("mcp/router.zig");
|
|
pub const Server = @import("mcp/Server.zig");
|
|
pub const HttpServer = @import("mcp/HttpServer.zig");
|
|
|
|
test {
|
|
std.testing.refAllDecls(@This());
|
|
}
|