shahondin1624 1bcd277a1b Update mcp tool universe
Add rag utility
2026-02-14 18:02:58 +01:00
2026-02-14 18:02:58 +01:00
2026-02-14 11:20:56 +01:00
2026-02-14 11:20:56 +01:00
2026-02-14 18:02:58 +01:00
2026-02-14 11:20:56 +01:00

Building the project

To build the project and generate the fat JAR and binaries, run:

mvn clean package

Generated Artifacts

After a successful build, you can find the following artifacts in the target/ directory:

  • mcp-server-app-all.jar: Executable fat JAR containing all dependencies.
  • mcp-server-app: Linux executable wrapper script.
  • mcp-server-app.exe: Windows executable (console application).

Running the server

Using the fat JAR:

java -jar target/mcp-server-app-all.jar

Using the Linux executable:

./target/mcp-server-app

The server will start on port 8080.

MCP Configuration

This server is available using

{
  "mcpServers": {
    "test": {
      "command": "java",
      "args": ["-jar", "/path/to/mcp-server-app-all.jar"]
    }
  }
}

or via HTTP:

{
  "mcpServers": {
    "test": {
      "url": "http://127.0.0.1:8080/mcp"
    }
  }
}

as mcp config.

Description
No description provided
Readme MIT 37 KiB
Languages
Java 100%