mcp: inline mcpVersion helper from Config

This commit is contained in:
Adrià Arrufat
2026-03-30 07:13:45 +02:00
parent e083d4a3d1
commit 20e62a5551
2 changed files with 5 additions and 7 deletions

View File

@@ -189,12 +189,6 @@ pub fn webBotAuth(self: *const Config) ?WebBotAuthConfig {
};
}
pub fn mcpVersion(self: *const Config) []const u8 {
return switch (self.mode) {
.mcp => |opts| @tagName(opts.version),
else => @tagName(mcp.Version.default),
};
}
pub fn maxConnections(self: *const Config) u16 {
return switch (self.mode) {

View File

@@ -81,8 +81,12 @@ pub fn handleMessage(server: *Server, arena: std.mem.Allocator, msg: []const u8)
fn handleInitialize(server: *Server, req: protocol.Request) !void {
const id = req.id orelse return;
const version: protocol.Version = switch (server.app.config.mode) {
.mcp => |opts| opts.version,
else => .default,
};
const result: protocol.InitializeResult = .{
.protocolVersion = server.app.config.mcpVersion(),
.protocolVersion = @tagName(version),
.capabilities = .{
.resources = .{},
.tools = .{},