agentic-ai-mcp-server

sayantac/agentic-ai-mcp-server

3.2

If you are the rightful owner of agentic-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.

Agentic AI MCP Server is a Spring Boot application designed to facilitate AI-powered dog adoption scheduling services.

Agentic AI MCP Server

A Spring Boot application that provides AI-powered dog adoption scheduling services.

Prerequisites

  • Docker

Building and Running with Docker

  1. Build the Docker image:
docker build -t agentic-ai-mcp-server .
  1. Run the container:
docker run -p 8081:8081 agentic-ai-mcp-server

The application will be available at http://localhost:8081

Development

Prerequisites

  • Java 21
  • Maven 3.9+

Building locally

mvn clean package

Running locally

java -jar target/agentic-ai-mcp-server-0.0.1-SNAPSHOT.jar

Configuration

The application is configured to run on port 8081 by default. You can override this by setting the SERVER_PORT environment variable when running the Docker container:

docker run -p 8082:8082 -e SERVER_PORT=8082 agentic-ai-mcp-server