From 7090ebda1d6578c393e801e3cfaa426b80aa3d10 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 09:19:49 +0000 Subject: [PATCH 1/2] Update quarkus-langchain4j.version to v1.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae93829..91b2535 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ 3.23.0 5.9.1 0.6.2 - 1.0.0.CR2 + 1.0.0 3.5.3 From 3fe382a93863374ec4ebe52a1b9f39d23bd74bfc Mon Sep 17 00:00:00 2001 From: kpavlov <1517853+kpavlov@users.noreply.github.com> Date: Mon, 2 Jun 2025 22:50:20 +0300 Subject: [PATCH 2/2] Remove redundant 'name' attribute from @Tool annotation in TimeTool --- mcp/src/main/kotlin/mcp/TimeTool.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp/src/main/kotlin/mcp/TimeTool.kt b/mcp/src/main/kotlin/mcp/TimeTool.kt index 8ceb23f..18e1889 100644 --- a/mcp/src/main/kotlin/mcp/TimeTool.kt +++ b/mcp/src/main/kotlin/mcp/TimeTool.kt @@ -12,7 +12,7 @@ import kotlinx.datetime.toLocalDateTime class TimeTool { - @Tool(name = "time", description = "Returns current time at timezone") + @Tool(description = "Returns current time at timezone") fun time( @ToolArg(description = "Timezone or empty for UTC", required = false) timezone: String? = "UTC"