This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch jbang-mcp-http in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5894a0a71ca7e32b7a6e6295cccd1e6d199c6999 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Jan 23 09:46:16 2026 +0100 CAMEL-22889 - Camel-Jbang-MCP: Add the server option as exposing method, not stdio only Signed-off-by: Andrea Cosentino <[email protected]> --- dsl/camel-jbang/camel-jbang-mcp/pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dsl/camel-jbang/camel-jbang-mcp/pom.xml b/dsl/camel-jbang/camel-jbang-mcp/pom.xml index 4fd53a0d24b6..d0e484e39af6 100644 --- a/dsl/camel-jbang/camel-jbang-mcp/pom.xml +++ b/dsl/camel-jbang/camel-jbang-mcp/pom.xml @@ -40,7 +40,7 @@ <label>jbang,mcp,ai</label> <supportLevel>Preview</supportLevel> <camel-prepare-component>false</camel-prepare-component> - <quarkus-mcp-server-version>1.2.0</quarkus-mcp-server-version> + <quarkus-mcp-server-version>1.8.0</quarkus-mcp-server-version> <quarkus.platform.version>3.30.7</quarkus.platform.version> <!-- Build uber-jar for easy JBang execution --> <quarkus.package.jar.type>uber-jar</quarkus.package.jar.type> @@ -65,6 +65,12 @@ <artifactId>quarkus-mcp-server-stdio</artifactId> <version>${quarkus-mcp-server-version}</version> </dependency> + <!-- Quarkus MCP Server with HTTP/SSE transport --> + <dependency> + <groupId>io.quarkiverse.mcp</groupId> + <artifactId>quarkus-mcp-server-http</artifactId> + <version>${quarkus-mcp-server-version}</version> + </dependency> <!-- Quarkus core dependencies --> <dependency>
