drio
Open app

Quarkus Model Context Protocol (MCP) Server

Source

This extension enables developers to implement the MCP server features easily.

Catalog onlyCatalog onlySTDIO

Overview

Quarkus MCP Server is an extension for developing applications that leverage the Model Context Protocol (MCP), enabling seamless integration between language model applications and external data sources and tools.

To use the Quarkus MCP Server, implement the declarative API provided by the extension, which simplifies the integration of MCP server functionalities into your applications.

  • Provides a declarative API for easy implementation of MCP features. - Facilitates integration of LLM applications with various external data sources and tools. - Supports a streamlined implementation process for developers.
  1. Developers can create LLM applications that pull data from external APIs.
  2. Enables the development of chatbots that interact with databases or other data services.
  3. Facilitates the connection of AI applications with dynamic data sources in real-time.

Add to your AI client

Use these steps to connect Quarkus Model Context Protocol (MCP) Server 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-quarkiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-quarkiverse"
      ]
    }
  }
}

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-quarkiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-quarkiverse"
      ]
    }
  }
}

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-quarkiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-quarkiverse"
      ]
    }
  }
}

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-quarkiverse": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-quarkus-mcp-server-quarkiverse"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the Model Context Protocol?

The Model Context Protocol is an open protocol that allows LLM applications to integrate seamlessly with external data sources and tools.

Who can contribute to the Quarkus MCP Server?

Contributions are welcome from anyone, regardless of experience level.

Where can I find more information about this project?

You can find more details and the codebase at [Quarkus MCP Server GitHub Repository](https://github.com/quarkiverse/quarkus-mcp-server).