Spring AI MCP Server
스프링부트와 AI를 활용한 엑셀, PPT 생성 서버
haeseoky
README
Spring AI MCP Server
스프링부트와 AI를 활용한 엑셀, PPT 생성 서버입니다.
주요 기능
- AI를 활용한 엑셀 문서 자동 생성
- AI를 활용한 PPT 프레젠테이션 자동 생성
- RESTful API를 통한 비동기 문서 생성 요청 처리
기술 스택
- Java 17
- Spring Boot 3.2.3
- Spring AI 0.8.0 (OpenAI 활용)
- Apache POI 5.2.5 (엑셀, PPT 파일 생성)
요구 사항
- Java 17 이상
- OpenAI API 키
실행 방법
- 환경 변수 설정:
OPENAI_API_KEY=your_api_key
- 애플리케이션 빌드:
./gradlew clean build
- 애플리케이션 실행:
java -jar build/libs/spring-ai-mcp-server-0.0.1-SNAPSHOT.jar
API 사용 예시
1. 엑셀 문서 생성 요청
curl -X POST http://localhost:8080/api/documents \
-H "Content-Type: application/json" \
-d '{
"title": "2024년 분기별 매출 보고서",
"content": "2024년 1분기에서 3분기까지의 매출 데이터를 포함한 보고서를 생성합니다. 제품 카테고리별 매출과 총합을 표시하고, 분기별 증감률도 표시해주세요.",
"documentType": "EXCEL",
"sections": ["매출 개요", "제품별 실적", "지역별 실적"]
}'
2. PowerPoint 프레젠테이션 생성 요청
curl -X POST http://localhost:8080/api/documents \
-H "Content-Type: application/json" \
-d '{
"title": "AI 기술 동향 2025",
"content": "2025년 현재의 AI 기술 동향을 소개하는 프레젠테이션입니다. 생성형 AI 발전, 대규모 언어 모델, AI 윤리 및 규제, 산업별 AI 응용 사례 등을 다룹니다.",
"documentType": "POWERPOINT",
"sections": ["서론", "생성형 AI 동향", "대규모 언어 모델 발전", "산업별 AI 응용", "윤리 및 규제", "결론"]
}'
3. 문서 생성 상태 확인
curl -X GET http://localhost:8080/api/documents/{documentId}
4. 생성된 문서 다운로드
-
엑셀 파일:
curl -X GET http://localhost:8080/api/documents/excel/download/{fileName}
-
PowerPoint 파일:
curl -X GET http://localhost:8080/api/documents/ppt/download/{fileName}
설정 옵션
application.yml
에서 다양한 설정을 조정할 수 있습니다:
app:
document:
temp-dir: ${java.io.tmpdir}/spring-ai-mcp-server # 임시 파일 저장 경로
향후 개발 계획
- Markdown 문서 생성 기능 추가
- Confluence 페이지 자동 생성 기능 추가
- 다양한 문서 템플릿 지원
- 이미지 및 차트 자동 생성 기능
라이센스
MIT License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.