spring-ai-mcp-server

Oussemasahbeni/spring-ai-mcp-server

3.1

If you are the rightful owner of spring-ai-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Spring AI MCP Server is a Java-based application built with Spring Boot and Spring AI.

The Spring AI MCP Server is a robust Java-based application designed to be launched and managed by an external orchestration tool or script. It leverages the power of Spring Boot and Spring AI to provide a flexible and scalable server environment. The server is configured using a JSON file that specifies the command and arguments necessary for its execution. This setup allows for easy customization and integration with various deployment environments. The server is particularly suited for applications that require a high degree of configurability and integration with AI technologies.

Features

  • Java-based application using Spring Boot and Spring AI.
  • Configurable via JSON for flexible deployment.
  • Supports Spring profiles for environment-specific configurations.
  • Easily integrates with external orchestration tools.
  • Scalable and suitable for AI-driven applications.

Usages

usage with java

{
    "mcpServers": {
        "your-server-identifier": {
            "command": "path/to/your/java/executable",
            "args": [
                "-jar",
                "path/to/your/mcp-SNAPSHOT.jar",
                "--spring.profiles.active=yourprofile", // Optional: Spring profiles
                "--server.port=8081" // Optional: Override server port
            ]
        }
    }
}