Node.js / Express / TypeScript 기반 MCP (Model Context Protocol) 서버
npm install
npm run build
npm start
# 인증과 함께 실행
TOKEN=your_token npm start
npm test # 기본 테스트
npm run test:mcp # MCP 기능 테스트
docker build -t mcp-server .
docker run -p 3000:3000 -e TOKEN=your_token mcp-server
- POST
/mcp
- GET
/mcp
- DELETE
/mcp
create_task(title, description?)
- 작업 생성complete_task(task_id)
- 작업 완료list_tasks()
- 작업 목록health_check()
- 서버 상태
tasks://all
- 모든 작업tasks://pending
- 대기 작업tasks://completed
- 완료 작업