Skip to content

Latest commit

 

History

History
213 lines (138 loc) · 7.24 KB

contributing.md

File metadata and controls

213 lines (138 loc) · 7.24 KB

Contributing

Tools and Providers

A tool is anything that can operate in a request/reply mode. A provider is anything that can read a resource. Tools typically mean that some processing is performed on the provided input. Providers typically facilitate access to a resource (such as file) without necessarily processing an input (expect, of course, evaluating the name of the resource and how that matches with the underlying system storing the resource).

Here are some examples:

  • Producing a record to Kafka and waiting for a response in another topic is a tool
  • Reading the last record on a Kafka topic is a provider
  • Running an SQL query on a database is a tool (i.e., the query is the request, and returned rows are the response).
  • Reading a data object in a S3 bucket is a provider
  • Exchanging data using request/reply over JMS is a tool

NOTE: this is a generic explanation and the distinction may be specific to the problem domain. Therefore, there may be cases where this doesn't apply.

Service types

You can create services using Apache Camel or plain Quarkus. To do so, just provide the desired type when creating the project (i.e.; via --type=quarkus when using wanaku or -Dwanaku-service-type when using the Maven archetype).

Creating New Tools

To create a new tool for Wanaku, you can start by creating a new project.

For instance, to create one for Kafka:

wanaku services create tool --name kafka

Alternatively, if you don't have the CLI instanced, you can do so using Maven:

mvn -B archetype:generate -DarchetypeGroupId=ai.wanaku -DarchetypeArtifactId=wanaku-tool-service-archetype -DarchetypeVersion=0.0.3 -DgroupId=ai.wanaku -Dpackage=ai.wanaku.tool -DartifactId=wanaku-tool-service-kafka -Dname=Kafka -Dwanaku-version=0.0.2 -Dwanaku-service-type=camel

NOTE: this can be used both to create a core tool, part of the Wanaku MCP router project, or to create a custom one for your own needs.

NOTE: make sure to adjust the version of Wanaku to be used by correctly setting the wanaku-version property to the base Wanaku version to use.

Then, open the pom.xml file to add the dependencies for your project. Using the example above, we would include the following dependencies:

    <dependency>
        <groupId>org.apache.camel.quarkus</groupId>
        <artifactId>camel-quarkus-kafka</artifactId>
    </dependency>

Adjust the gPRC port in the application.properties file by adjusting the quarkus.grpc.server.port property.

NOTE: you can also provide the port when launching (i.e., java -Dquarkus.grpc.server.port=9190 -jar target/quarkus-app/quarkus-run.jar)

Then, build the project:

mvn clean package

And run it:

java -jar target/quarkus-app/quarkus-run.jar

After launching, then link the instance

wanaku targets tools link --service=kafka --target=localhost:9190

NOTE: make sure to replace kafka with the actual service type you are exposing.

Creating new Resource Providers

To create a new resource for Wanaku, you can start by creating a new project.

For instance, to create one for S3:

wanaku services create resource --name s3

Alternatively, if you don't have the CLI instanced, you can do so using Maven:

mvn -B archetype:generate -DarchetypeGroupId=ai.wanaku -DarchetypeArtifactId=wanaku-provider-archetype -DarchetypeVersion=0.0.2 -DgroupId=ai.wanaku -Dpackage=ai.wanaku.provider -DartifactId=wanaku-provider-s3 -Dname=S3 -Dwanaku-version=0.0.2 -Dwanaku-service-type=camel

NOTE: this can be used both to create a core provider, part of the Wanaku MCP router project, or to create a custom one for your own needs.

NOTE: make sure to adjust the version of Wanaku to be used by correctly setting the wanaku-version property to the base Wanaku version to use.

Then, open the pom.xml file to add the dependencies for your project. Using the example above, we would include the following dependencies:

<dependency>
    <groupId>org.apache.camel.quarkus</groupId>
    <artifactId>camel-quarkus-aws-s3</artifactId>
</dependency>

Adjust the gPRC port in the application.properties file by adjusting the quarkus.grpc.server.port property.

NOTE: you can also provide the port when launching (i.e., java -Dquarkus.grpc.server.port=9190 -jar target/quarkus-app/quarkus-run.jar)

Then, build the project:

mvn clean package

And run it:

java -jar target/quarkus-app/quarkus-run.jar

After launching, then link the instance

wanaku targets resources link --service=s3 --target=localhost:9190

NOTE: make sure to replace s3 with the actual service type you are exposing.

Building Containers

You can also build containers using:

mvn -Pdist -Dquarkus.container-image.build=true -Dquarkus.container-image.push=true clean package

For custom containers, please make sure you set the following properties

  • quarkus.container-image.registry: to set the registry name
  • quarkus.container-image.group: to set the grop

You can do that in the pom.xml file:

<project> 
    <!-- lots of stuff --> 
    <properties>
        <quarkus.container-image.registry>quay.io</quarkus.container-image.registry>
        <quarkus.container-image.group>my-group</quarkus.container-image.group>
    </properties>
    <!-- lots of other stuff -->
</project>

Or in the CLI:

mvn -Pdist -Dquarkus.container-image.registry=quay.io -Dquarkus.container-image.group=my-group -Dquarkus.container-image.build=true -Dquarkus.container-image.push=true clean package

Adding Routes to Providers and Tools

In some cases, you may need something more complex than can be achieved using the ProducerTemplate from Camel. In those cases, then you can create a traditional Camel route and invoke it from the delegate.

The example below shows a route that consumes from direct:start and sets a body as the reply:

package ai.wanaku.tool;

import org.apache.camel.builder.RouteBuilder;

public class ExampleRoute extends RouteBuilder {
	@Override
    public void configure() throws Exception {
        from("direct:start")
                .log("Hello World ${body}")
                .setBody(constant("It worked!"));
    }
}

Then, on the delegate code, you should call that route using:

String s = producer.requestBody("direct:start", parsedRequest.body(), String.class);

That should allow you to run more complex processing and transformation before calling the endpoint.

Testing

You can use the MCP inspector to easily test your tool or provider.

Essentially, the process is to launch Wanaku MCP router, then link the tool/provider you created. Then, launch the inspector and use its features to list and read resources and to list and invoke tools.

Learn More

To contribute new core features and connectors, also read the Wanaku MCP Router Internals guide.

If you want to understand what each of the components do, then read the Wanaku Components and Architecture guide.

Release Guide

Committers should check the Release Guide for details about how to build and distribute Wanaku.