Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"crmMcpServer": {
"env": {},
"args": [
"run",
"-i",
"--rm",
"yoonbeopgong/crm-mcp-server"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
이 가이드는 Model Context Protocol (MCP) 서버를 Docker 이미지로 빌드하고 배포하는 방법을 설명합니다.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Crm Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
이 가이드는 Model Context Protocol (MCP) 서버를 Docker 이미지로 빌드하고 배포하는 방법을 설명합니다.
이 프로젝트는 Spring AI를 사용하여 MCP 서버를 구현하였으며, 주요 기능은 다음과 같습니다:
# Simple Dockerfile for MCP Server that uses local JAR file
FROM eclipse-temurin:17-jre-jammy
WORKDIR /app
# Set timezone
ENV TZ=Asia/Seoul
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Copy the JAR file from local build
COPY build/libs/mcpserver-0.0.1-SNAPSHOT.jar app.jar
# Configure to use standard input/output
ENTRYPOINT ["java", "-Xms512m", "-Xmx1g", "-jar", "app.jar"]
이 Dockerfile은:
yoonbeopgong 계정 사용).docker login
다음 명령어를 실행하여 이미지를 빌드하고 Docker Hub에 푸시합니다:
chmod +x build_and_push.sh
./build_and_push.sh
다음 명령어를 실행합니다:
build_and_push.bat
MCP 서버를 실행하기 위해 다음 명령어를 사용합니다:
docker run -i --rm yoonbeopgong/crm-mcp-server
JSON 설정에서 다음과 같이 MCP 서버를 참조합니다:
{
"mcpServers": {
"crmMcpServer": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"yoonbeopgong/crm-mcp-server"
],
"env": {}
}
}
}
다음 스크립트를 실행하여 Docker 이미지가 제대로 작동하는지 테스트할 수 있습니다:
Linux/Mac:
chmod +x test-docker.sh
./test-docker.sh
Windows:
test-docker.bat
./gradlew build를 실행하여 JAR 파일이 생성되는지 확인하세요.docker build -t yoonbeopgong/crm-mcp-server . --no-cache를 실행하여 캐시 없이 빌드 시도해보세요.docker logs [container_id]로 로그를 확인하세요.