A Model Context Protocol (MCP) server that provides build automation capabilities for software projects. This server can analyze, compile, and package projects using various build tools including Maven, Gradle, and NPM.
{
"mcpServers": {
"mcp-server-builder": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides build automation capabilities for software projects. This server can analyze, compile, and package projects using various build tools including Maven, Gradle, and NPM.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 212 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Builder and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides build automation capabilities for software projects. This server can analyze, compile, and package projects using various build tools including Maven, Gradle, and NPM.
buildProjectAnalyzes and builds a software project in a specified directory.
Parameters:
projectPath (string, required): Absolute path to the project directoryReturns:
{
"success": true,
"buildTool": "maven",
"javaVersion": "21",
"projectName": "spring-petclinic",
"projectVersion": "3.3.0",
"artifacts": [
{
"path": "/path/to/project/target/spring-petclinic-3.3.0.jar",
"type": "executable-jar",
"size": "45.2MB"
}
],
"buildDuration": "2m 15s",
"mainClass": "org.springframework.samples.petclinic.PetClinicApplication",
"port": "8080",
"buildCommands": ["mvn clean compile", "mvn package"],
"dockerHints": {
"baseImage": "openjdk:21-jre-slim",
"exposedPort": "8080",
"healthCheckPath": "/actuator/health"
}
}
Error Response:
{
"success": false,
"errorType": "BUILD_TOOL_DETECTION_FAILED",
"message": "No supported build tool found in project directory",
"suggestions": ["Ensure pom.xml, build.gradle, or package.json exists in the project root"]
}
| Build Tool | Configuration File | Java Versions | Notes |
|------------|-------------------|---------------|-------|
| Maven | pom.xml | 8, 11, 17, 21 | Spring Boot auto-detection |
| Gradle | build.gradle, build.gradle.kts | 8, 11, 17, 21 | Kotlin DSL support |
| NPM | package.json | Node 16, 18, 20, 22 | React, Vue, Angular detection |
git clone https://github.com/riccardocinti/mcp-server-builder-project.git
cd mcp-server-builder-project
mvn clean install
# application.yml
mcp:
build:
timeout: 300000 # 5 minutes
max-concurrent-builds: 3
temp-directory: "/tmp/mcp-builds"
preserve-artifacts: true
# Virtual threads configuration
spring:
threads:
virtual:
enabled: true
export MCP_BUILD_TIMEOUT=300000
export MCP_BUILD_TEMP_DIR="/tmp/mcp-builds"
export JAVA_HOME="/usr/lib/jvm/java-21-openjdk"
export MAVEN_HOME="/usr/share/maven"
export GRADLE_HOME="/usr/share/gradle"
{
"method": "tools/call",
"params": {
"name": "buildProject",
"arguments": {
"projectPath": "/home/user/projects/spring-petclinic"
}
}
}
@RestController
public class BuildController {
@Autowired
private ChatClient chatClient;
@PostMapping("/build")
public ResponseEntity<String> buildProject(@RequestBody BuildRequest request) {
return chatClient.prompt()
.user("Build the project at: " + request.getProjectPath())
.functions("buildProject")
.call()
.content();
}
}
This Build MCP Server is designed to work seamlessly with:
# 1. Clone with GitHub MCP
curl -X POST http://localhost:8080/mcp/github/clone \
-d '{
... [View full README on GitHub](https://github.com/riccardocinti/mcp-server-builder#readme)