Interact with various build systems including Gradle, Maven, NPM/Yarn, Cargo, Python, Makefile, and CMake.
A comprehensive Model Context Protocol (MCP) server that enables LLM clients to interact with various build systems including Gradle, Maven, NPM/Yarn, Cargo, Python, Makefile, and CMake.
Build-scout provides a standardized interface for build tool operations through the Model Context Protocol, allowing AI assistants to understand, analyze, and manipulate software projects across multiple build technologies.
build.gradle
, build.gradle.kts
pom.xml
package.json
Cargo.toml
requirements.txt
, setup.py
Makefile
CMakeLists.txt
find_build_system
- Discovers build systems in project directoriesbuild_system_file_paths
- Returns paths to build system filesbuild_gradle_project
- Executes Gradle builds with optional checksgradle_tester
- Runs Gradle build and test tasksdependencies_list
- Lists all top-level dependencies with versionsupdate_dependency_version
- Updates dependency versions in build fileslatest_dependency_version
- Fetches latest versions from repositoriesfind_class_usage
- Finds class usage across the codebasejar_diff_reporter
- Compares JAR files for differencesget_file_info
- Retrieves file metadata and informationget_resource_info
- Gets resource informationreplace_source_code_complete
- Performs source code replacementsdownload_current_latest_source
- Downloads latest source versionsThis will increment the version number and build the JAR:
./gradlew clean prebuild updateConfigJson
Completed and tested all the tools, prompt and root to see the native image working. Still need to review more for edge cases but try it out.
./gradlew clean prebuild nativeCompile
"scout-server": { "command": "java", "args": [ "-agentlib:native-image-agent=config-output-dir=/Users/davidparry/code/github/mcp-servers/build-scout/tmp/META-INF/native-image", "-Dorg.gradle.native=false", "-Djava.awt.headless=true", "-jar /Users/davidparry/code/github/mcp-servers/build-scout/build/libs/scout-1.0.105.jar" ], "env": { "BUILD_SCOUT_LOGGING": "DEBUG" } }
src/main/resources/META-INF/native-image
directory.:$GRAALVM_HOME/bin/native-image-configure generate --input-dir=tmp/META-INF/native-image --output-dir=src/main/resources/META-INF/native-image
Add to your claude_desktop_config.json
:
{ "mcpServers": { "scout-server": { "command": "java", "args": ["-jar", "/path/to/scout-1.0.{VERSION}.jar"] } } }
{ "mcpServers": { "scout-server": { "command": "scout", "args": [], "env": { "BUILD_SCOUT_LOGGING": "ERROR" } } } }
Add to your ~/.config/github-copilot/intellij/mcp.json
:
{ "servers": { "scout-server": { "command": "java", "args": ["-jar", "/path/to/scout-1.0.{VERSION}.jar"] } } }
The server can be integrated with any MCP-compatible client by configuring the appropriate JSON configuration file.
{ "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "find_build_system", "arguments": { "project_root": "/path/to/your/project" } } }
{ "jsonrpc": "2.0", "id": 2, "method": "tools/call", "params": { "name": "build_gradle_project", "arguments": { "project_root": "/path/to/gradle/project", "check": true } } }
{ "jsonrpc": "2.0", "id": 3, "method": "tools/call", "params": { "name": "dependencies_list", "arguments": { "path": "/path/to/build.gradle" } } }
{ "jsonrpc": "2.0", "id": 4, "method": "tools/call", "params": { "name": "update_dependency_version", "arguments": { "groupId": "org.springframework.boot", "artifactId": "spring-boot-starter-web", "version": "3.2.0", "path": "/path/to/build.gradle" } } }
@Schema
annotationssrc/
├── main/
│ ├── java/
│ │ └── com/davidparry/scout/
│ │ ├── Main.java
│ │ ├── Router.java
│ │ ├── tools/ # MCP tools implementation
│ │ ├── common/ # Build system implementations
│ │ ├── spec/ # MCP protocol specifications
│ └── resources/
│ └── META-INF/native-image/ # GraalVM configuration
└── test/
└── java/ # Unit tests
Run the test suite:
./gradlew test
The build system automatically:
The server includes comprehensive logging at different levels. Check the console output for detailed information about tool execution and errors.
This project is licensed under the MIT License - see the LICENSE file for details.
Provides call graph analysis for LLMs using the nuanced library.
ComputerVision-based 🪄 sorcery of image recognition and editing tools for AI assistants.
Performs a Trivy scan to produce a Software Bill of Materials (SBOM) in CycloneDX format.
Provides real-time crypto and Web3 intelligence using the Hive Intelligence API.
An image generation server that connects to a local ComfyUI instance via its API, supporting dynamic workflows.
A collection of reference implementations for the Model Context Protocol (MCP), showcasing various MCP servers implemented with TypeScript and Python SDKs.
Interact with Jupyter notebooks, allowing for code execution, cell manipulation, and notebook management.
An MCP server that allows AI assistants to interact with Ansible Automation Platform (AAP) and Event-Driven Ansible (EDA) infrastructure.
Provides runtime debugging access to Node.js applications for code editors like Cursor or Claude Code.
Video transcoding, packaging, and analysis using the Shaka Packager tool, integrated with Claude AI.