- Springboot Bootstrap Mcp
Springboot Bootstrap Mcp
A Model Context Protocol (MCP) server for bootstrapping Spring Boot projects using Spring Initializr. This server provides AI assistants with tools to discover available Spring Boot configurations and generate customized project templates.
Available Tools
getSpringBootInitDetails:
Retrieves all available configuration options from Spring Initializr Returns available Spring Boot versions, dependencies, Java versions, and more Use this first to discover valid parameter values
downloadSpringBootProject:
Downloads a fully configured Spring Boot project as a ZIP file OR extracts directly to a directory Smart Path Detection: If path ends with .zip, saves as ZIP file; otherwise extracts all files to directory Supports customization of build tool, language, dependencies, and more Automatically creates parent directories if needed Extracted projects are ready to open in your IDE immediately
Server Config
{
"mcpServers": {
"springboot-bootstrap": {
"command": "java",
"args": [
"-jar",
"C:/mcp-servers/app-bootstrap.jar"
]
}
}
}