hello-spring-mcp-server

hello-spring-mcp-server

5

Hello Spring MCP Server is a Spring-based implementation designed for Model Context Protocol (MCP) applications. It supports local execution and deployment on AWS ECS, making it suitable for scalable and cloud-based solutions.

Hello Spring MCP Server

Run Locally

./gradlew bootRun

Deploy on ECS

Prereqs:

export ECR_REPO=<your account id>.dkr.ecr.us-east-1.amazonaws.com/<your repo path>

./gradlew bootBuildImage --imageName=$ECR_REPO

docker push $ECR_REPO:latest

rain deploy \
  --params=ContainerImage=$ECR_REPO:latest,ContainerPort=8080,ServiceName=hello-spring-mcp-server \
  infra.cfn \
  hello-spring-mcp-server