From 907b825ede955c0ce7b253d92a516d2bc9e5b4c2 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Mon, 28 Jul 2025 17:37:10 +0200 Subject: [PATCH] chore: fix name --- internal/llm/agent/mcp.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/llm/agent/mcp.go b/internal/llm/agent/mcp.go index db9e63ccf68aedc5d7294f4a5007ef3362386180..57c705e52d39df633ff675229d841b5a7caa7d25 100644 --- a/internal/llm/agent/mcp.go +++ b/internal/llm/agent/mcp.go @@ -182,7 +182,8 @@ func getTools(ctx context.Context, cwd string, name string, m MCPConfig, permiss initRequest := mcp.InitializeRequest{} initRequest.Params.ProtocolVersion = mcp.LATEST_PROTOCOL_VERSION initRequest.Params.ClientInfo = mcp.Implementation{ - Name: "dreamlover", + Name: "crush", + Version: version.Version, } _, err := c.Initialize(ctx, initRequest)