MCP Server using Spring Boot Java
MCP Server using Spring Boot Java
Overview
MCP Server using Spring Boot Java is a server application designed to facilitate the development and deployment of Minecraft servers using the Spring Boot framework.
To use this project, clone the repository from GitHub, configure your server settings in the application properties, and run the Spring Boot application to start your Minecraft server.
- Built on the popular Spring Boot framework for easy configuration and deployment. - Supports various Minecraft server configurations. - Provides a RESTful API for server management.
- Setting up a custom Minecraft server for gaming.
- Managing server settings and configurations through a web interface.
- Integrating with other services using the provided API.
Add to your AI client
Use these steps to connect MCP Server using Spring Boot Java 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": {
"mcp-server-spring-java-mtwn105": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-spring-java-mtwn105"
]
}
}
}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": {
"mcp-server-spring-java-mtwn105": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-spring-java-mtwn105"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-spring-java-mtwn105": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-spring-java-mtwn105"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-spring-java-mtwn105": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-spring-java-mtwn105"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-spring-java-mtwn105": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-spring-java-mtwn105"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-spring-java-mtwn105": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-spring-java-mtwn105"
]
}
}
}FAQ
Is this project actively maintained?
Yes, the project is actively maintained with regular updates.
What license is this project under?
This project is licensed under the Apache-2.0 license.
Can I contribute to this project?
Yes, contributions are welcome! Please check the contribution guidelines in the repository.