Content
# Tool List
> Kakao PlayMCP × Agentic Player 10 공모전 출품작
MCP Server for pregnancy, childbirth, and childcare information with Claude AI.
## Usage Scenarios
```
"What check-ups do I have this month at 28 weeks pregnant?"
→ 28-week fetal development + this month's check-up items immediately returned
"The baby is born on December 1, 2025. Please provide the vaccination schedule."
→ BCG·DTaP·IPV etc. overall vaccination completion/scheduled/delayed status
"Find a hospital in Mapo-gu where I can get DTaP."
→ List of medical institutions that can provide vaccination
"What benefits are available for pregnant women in Suwon-si, Gyeonggi-do?"
→ National Happiness Card·First Meeting Benefits·Parenting Benefits·Child Benefits + additional benefits in Gyeonggi-do
"The baby is 6 months old. How do I start weaning?"
→ Weaning start guide, cautionary foods, developmental milestones
"Two weeks after childbirth. How should I recover?"
→ Afterbirth observation, breast management, postpartum depression check, newborn care tips
```
## Tools (7)
| Tool | Function |
|------|------|
| `pregnancy_week_info(week)` | Fetal development, check-ups, and precautions by pregnancy week |
| `prenatal_checkup_schedule(due_date)` | Prenatal check-up schedule based on due date |
| `vaccination_schedule(birth_date)` | Vaccination completion/scheduled/delayed status for infants and toddlers |
| `vaccination_center(location, vaccine)` | Search for medical institutions that can provide vaccination |
| `maternity_benefits(region)` | Inquiry of benefits for pregnant women and childbirth by region |
| `baby_nutrition_guide(age_months)` | Weaning and nutrition guide by month |
| `postpartum_info(weeks_after)` | Postpartum recovery guide and newborn care by week |
## Data Sources (all public APIs)
| Institution | Data |
|------|--------|
| Korea Disease Control and Prevention Agency NIP | National vaccination standard schedule (2024) |
| Health Insurance Review and Assessment Service | Hospital and clinic information |
| Bokwiro | Support services for pregnant women and newborns |
| Static data | Pregnancy week information, local government subsidies (regular updates) |
## Deployment URL
**SSE (Remote Connection):** `https://pregnancy-baby-mcp.fly.dev/sse`
## Installation
### Claude Desktop — Remote SSE Connection (Recommended)
```json
{
"mcpServers": {
"pregnancy-baby-mcp": {
"url": "https://pregnancy-baby-mcp.fly.dev/sse"
}
}
}
```
### Claude Desktop — Local Execution
```json
{
"mcpServers": {
"pregnancy-baby-mcp": {
"command": "python",
"args": ["C:/path/to/pregnancy-baby-mcp/server.py"],
"env": {
"DATA_GO_API_KEY": "your_key",
"HIRA_API_KEY": "your_key"
}
}
}
}
```
### Docker (SSE Mode)
```bash
docker build -t pregnancy-baby-mcp .
docker run -p 8000:8000 \
-e MCP_TRANSPORT=sse \
-e DATA_GO_API_KEY=your_key \
pregnancy-baby-mcp
```
### Local Execution
```bash
pip install -r requirements.txt
cp .env.example .env # Enter API keys
python server.py
```
## Testing
```bash
pip install pytest
pytest tests/ -v
```
## API Key Issuance (Free)
1. [data.go.kr](https://www.data.go.kr) membership registration
2. Apply for the following APIs (issued immediately):
- Health Insurance Review and Assessment Service hospital information service
- Ministry of Health and Welfare welfare service API
3. Enter the key in `.env`
## Medical Disclaimer
All information provided by this service is for **reference purposes only**. Medical diagnosis, prescription, and decision-making must be made in consultation with a doctor.
Vaccination schedules and pregnancy information are based on guidelines from the Korea Disease Control and Prevention Agency and obstetricians.
## License
MIT