HUSS-sodongkimbap/MCP-Server
3.1
If you are the rightful owner of 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.
This project wraps the data.go.kr public institution recruitment information service as an MCP server.
Tools
2
Resources
0
Prompts
0
recruitment-mcp
data.go.kr (기획재정부_공공기관 채용정보 조회서비스)를 MCP 서버로 감싼 예제.
설치(conda)
1. 가상환경 생성
conda create -n mcp-project python=3.12
2. 활성화
conda activate mcp-project
python -m pip install -U pip setuptools wheel
pip install mcp fastmcp httpx python-dotenv
설치(venv)
1. 가상환경 생성
py -3.12 -m venv .venv
2. 활성화
..venv\Scripts\Activate.ps1
python -m pip install -U pip setuptools wheel
pip install mcp fastmcp httpx python-dotenv
실행
python final_chatbot.py
3. 파일구조
HUSS/
├─ src/
│ ├─ server.py # 일자리 MCP
│ ├─ youth_policy_server.py # 정책 MCP
│ ├─ realestate_server.py # 부동산 MCP
│ ├─ enhanced_orchestrator.py # MCP 연결 오케스트레이터
│ ├─ final_chatbot.py # CLI 용
└─
4. 지역 행정코드
강릉 51150
정선 51770
영월 51750
김제 52210
청양 44790
사용
MCP 클라이언트(예: IDE/챗봇)에서 아래 툴을 호출:
- listRecruitments: { "path": "recruitment/목록_엔드포인트", "filters": {"region":"R3010","empType":"R1010"} }
- getRecruitmentDetail: { "path": "recruitment/상세_엔드포인트", "params": {"noticeId":"..."} }
※ 실제 path/파라미터 키는 Swagger 명세와 동일하게 넣어야 합니다.