drio
Open app

quakus-mcp-server-hello-world

Source

Catalog onlyCatalog onlySTDIO

Overview

quarkus-mcp-server-hello-world is a sample project demonstrating the use of Quarkus framework for building microservices.

To use this project, clone the repository from GitHub, build the project using Maven, and run the application to see the hello world response.

  • Built with Quarkus for fast startup and low memory usage. - Demonstrates microservice architecture. - Easy to extend and modify for further development.
  1. Learning how to create microservices using Quarkus.
  2. Starting point for building more complex applications.
  3. Testing and experimenting with Quarkus features.

Add to your AI client

Use these steps to connect quakus-mcp-server-hello-world in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "quarkus-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-hello-world-jabrena"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "quarkus-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-hello-world-jabrena"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "quarkus-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-hello-world-jabrena"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "quarkus-mcp-server-hello-world-jabrena": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-hello-world-jabrena"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "quarkus-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-hello-world-jabrena"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "quarkus-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-hello-world-jabrena"
      ]
    }
  }
}

FAQ

What is Quarkus?

Quarkus is a Kubernetes-native Java framework tailored for GraalVM and OpenJDK HotSpot, designed for building cloud-native applications.

Is this project production-ready?

No, this is a sample project meant for learning and experimentation.

How can I contribute to this project?

You can contribute by submitting issues or pull requests on the GitHub repository.