1bcd277a1b2bd28d87e53b57a5d3eceeb9ca058e
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.
Languages
Java
100%