drio
Open app

spring-boot-mcp-server-hello-world

Source

Hello World MCP Server

Catalog onlyCatalog onlySTDIO

Overview

This project is a simple Hello World server built using Spring Boot, designed to demonstrate the basic setup and functionality of a microservices architecture.

To use this project, clone the repository from GitHub, build the application using Maven or Gradle, and run the server. You can then access the Hello World endpoint via your web browser or API client.

  • Simple Hello World endpoint to demonstrate server functionality. - Built using Spring Boot for easy setup and configuration. - Lightweight and easy to extend for further development.
  1. Learning the basics of Spring Boot and microservices.
  2. Serving as a template for building more complex microservices.
  3. Demonstrating RESTful API principles.

Add to your AI client

Use these steps to connect spring-boot-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": {
    "spring-boot-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spring-boot-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": {
    "spring-boot-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spring-boot-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": {
    "spring-boot-mcp-server-hello-world-jabrena": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spring-boot-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": {
    "spring-boot-mcp-server-hello-world-jabrena": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-spring-boot-mcp-server-hello-world-jabrena"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is Spring Boot?

Spring Boot is a framework that simplifies the setup and development of new Spring applications.

How do I run the server?

After cloning the repository, use Maven or Gradle to build the project and run the application.

Is this project suitable for production use?

This project is intended for educational purposes and as a starting point for further development.