Note
This repository is intended to showcase how Hyperfoil could be integrated with AI chatbots using MCP
This project uses Quarkus, the Supersonic Subatomic Java Framework.
If you want to learn more about Quarkus, please visit its website: https://quarkus.io/.
The application can be packaged using:
./mvnw install
This builds an uber-jar which you can run directly using jbang io.github.lampajr.hyperfoil:mcp-server-hyperfoil:0.0.1-SNAPSHOT:runner
To utilize in an MCP client (such as Claude Desktop or VS Code GitHub Copilot), you can use the following command:
jbang --quiet io.github.lampajr.hyperfoil:mcp-server-hyperfoil:0.0.1-SNAPSHOT:runner
An example of MCP server configuration could look like this:
{
"servers": {
"hyperfoil": {
"type": "stdio",
"command": "jbang",
"args": ["--quiet", "io.github.lampajr.hyperfoil:mcp-server-hyperfoil:1.0.0-SNAPSHOT:runner"]
}
}
}
- MCP Server - stdio (guide): Parent POM for Quarkiverse projects that includes the default release and artifact publishing related configuration