christophd commented on code in PR #20976: URL: https://github.com/apache/camel/pull/20976#discussion_r2715940467
########## dsl/camel-jbang/camel-jbang-mcp/pom.xml: ########## @@ -0,0 +1,143 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.camel</groupId> + <artifactId>camel-jbang-parent</artifactId> + <version>4.18.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>camel-jbang-mcp</artifactId> + <packaging>jar</packaging> + + <name>Camel :: JBang :: MCP</name> + <description>Camel JBang MCP (Model Context Protocol) Server using Quarkus</description> + + <properties> + <firstVersion>4.18.0</firstVersion> + <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.platform.version>3.30.6</quarkus.platform.version> + <!-- Build uber-jar for easy JBang execution --> + <quarkus.package.jar.type>uber-jar</quarkus.package.jar.type> + </properties> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>io.quarkus.platform</groupId> + <artifactId>quarkus-bom</artifactId> + <version>${quarkus.platform.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <!-- Quarkus MCP Server with STDIO transport --> + <dependency> + <groupId>io.quarkiverse.mcp</groupId> + <artifactId>quarkus-mcp-server-stdio</artifactId> Review Comment: Do we plan to make this also available as a remote MCP server that listens on a port for incoming requests? ########## dsl/camel-jbang/camel-jbang-mcp/src/generated/resources/META-INF/services/org/apache/camel/camel-jbang-plugin/camel-jbang-plugin-mcp: ########## @@ -0,0 +1,2 @@ +# Generated by camel build tools - do NOT edit this file! +class=org.apache.camel.dsl.jbang.core.commands.mcp.McpPlugin Review Comment: I do not see this in the commit, I guess this will be added in a 2nd iteration? ########## dsl/camel-jbang/pom.xml: ########## @@ -37,6 +37,7 @@ <module>camel-jbang-console</module> <module>camel-jbang-core</module> <module>camel-jbang-main</module> + <module>camel-jbang-mcp</module> Review Comment: if its a Camel JBang plugin I'd suggest to use `camel-jbang-plugin-mcp` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
