MaterCare Homes MCP Server
An AI-powered eldercare platform that enables AI agents to monitor passive sensors, generate personalized care plans, and access specialized healthcare knowledge bases. It provides tools for passive monitoring of senior activities, medical document OCR, and real-time alert management for caregivers.
README
MaterCare Homes
<p align="center"> <img src="assets/logo.png" alt="MaterCare Homes" width="200"/> </p>
<p align="center"> <a href="https://github.com/Taurus-AI-Corp/matercare-homes"> <img src="https://img.shields.io/badge/GitHub-MaterCare-red" alt="GitHub"> </a> <a href="https://pypi.org/project/matercare-homes/"> <img src="https://img.shields.io/badge/PyPI-v1.0.0-blue" alt="PyPI"> </a> <a href="LICENSE"> <img src="https://img.shields.io/badge/License-MIT-green" alt="License"> </a> <a href="https://github.com/Taurus-AI-Corp/matercare-homes/actions"> <img src="https://github.com/Taurus-AI-Corp/matercare-homes/workflows/CI/badge.svg" alt="CI"> </a> <a href="https://github.com/Taurus-AI-Corp/matercare-homes/security"> <img src="https://img.shields.io/badge/Security-HIPAA%20Ready-blue" alt="Security"> </a> <a href="https://pypi.org/project/matercare-homes/"> <img src="https://img.shields.io/badge/Enterprise-White--Label-blue" alt="Enterprise"> </a> </p>
The "Grandma Test" passed - No smartphone required. Passive monitoring for elderly that informs caregivers.
What is MaterCare Homes?
MaterCare Homes is an AI-powered eldercare platform designed for the 80% of seniors who don't use smartphones. It combines:
- 🤖 Agentic AI - Autonomous decision-making for eldercare
- 📄 OCR - Scan prescriptions, medical documents
- 📚 RAG - Healthcare knowledge retrieval
- 📡 IoT Sensors - Passive monitoring (mmWave, PIR, door sensors)
- 🔔 Alerts - SMS/call to caregivers
The Problem We Solve
| Traditional Eldercare Tech | MaterCare |
|---|---|
| Senior needs smartphone | Senior does NOTHING |
| Wearable required | Passive sensors |
| App complexity | Caregiver uses app |
| Reactive alerts | Proactive detection |
| Cloud-only | Edge processing |
Features
1. AI Assistant
- Fine-tuned Llama for eldercare
- Answers: dementia, fall prevention, medications, nutrition
- Available via: API, MCP, Voice (Alexa/Google Home)
2. Care Plan Generator
- Personalized plans based on conditions
- Daily routines, medications, safety
- Emergency protocols
3. Passive Monitoring
- mmWave Radar - Fall detection, vital signs
- PIR Motion - Activity levels
- Door Sensors - Wandering detection
- Pressure Mats - Bed/chair occupancy
4. Alert System
- Real-time SMS/call to caregivers
- Severity-based routing
- Escalation protocols
5. Knowledge Base
- CDC, NIH guidelines
- Drug interactions
- Emergency protocols
- Custom source addition
Quick Start
Installation
pip install matercare-homes
Python Usage
from matercare import MaterCareLLM, SensorGateway, KnowledgeBase
# Chat with eldercare AI
llm = MaterCareLLM()
response = llm.chat("What are signs of dehydration in elderly?")
print(response)
# Set up sensors
gateway = SensorGateway("senior_01")
gateway.register_sensor("mmwave_01", "mmwave")
gateway.register_sensor("door_01", "door")
# Query knowledge base
kb = KnowledgeBase()
results = kb.retrieve("fall prevention")
API Server
# Run API
matercare-api
# Or programmatically
from matercare.src.api import app
import uvicorn
uvicorn.run(app, port=8000)
MCP Server (For AI Agents)
# Run MCP server
matercare-mcp
# Now connect Claude Code, Cursor, etc.
Architecture
┌─────────────────────────────────────────────────────────────────┐
│ MATERCARE HOMES │
├─────────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ PASSIVE │ │ AGENTIC │ │ ALERT │ │
│ │ SENSORS │────▶│ AI CORE │────▶│ SYSTEM │ │
│ │ │ │ │ │ │ │
│ │ • mmWave │ │ • OCR │ │ • SMS │ │
│ │ • Motion │ │ • RAG │ │ • Call │ │
│ │ • Door │ │ • LLM │ │ • Push │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
│ │
│ ┌─────────────────────────────────────────────────────┐ │
│ │ MCP CONNECTOR (Plug & Play) │ │
│ │ • Claude Code • Cursor • Copilot • CrewAI │ │
│ └─────────────────────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────┘
Integration
Connect to Any AI Agent
from matercare.src.mcp import MaterCareMCP, MCPRequest
mcp = MaterCareMCP()
# Works with Claude Code, Cursor, Copilot, etc.
response = mcp.handle(MCPRequest(
method="chat",
params={"message": "Elder care advice"}
))
REST API
# Chat
curl -X POST http://localhost:8000/chat \
-H "Content-Type: application/json" \
-d '{"message": "Fall prevention tips"}'
# Care plan
curl -X POST http://localhost:8000/care-plan \
-H "Content-Type: application/json" \
-d '{"patient_name": "John", "conditions": ["diabetes"], "mobility": "ambulatory", "cognitive_status": "alert"}'
# Sensors
curl http://localhost:8000/sensors/status
Add Custom Knowledge
from matercare import KnowledgeBase, KnowledgeSource
kb = KnowledgeBase()
kb.add_source(KnowledgeSource(
name="Custom Hospital Protocol",
content="Our emergency protocol for...",
source_type="manual"
))
6-Phase Care Loop Orchestrator
MaterCare features a novel 6-phase orchestration that no competitor has:
Phase 1: SENSE - Collect all data sources
- IoT sensor data (mmWave, PIR, door)
- Voice input
- Documents/prescriptions
- Historical care data
Phase 2: THINK - Multi-agent analysis
- TriageAgent: Overall condition assessment
- MedicationAgent: Drug interactions & adherence
- VitalAgent: Heart rate, breathing, temperature
- CognitiveAgent: Mental status evaluation
- ActivityAgent: Daily patterns
- SocialAgent: Engagement monitoring
- EmergencyAgent: Critical condition detection
- NutritionAgent: Dietary needs
Phase 3: PLAN - Generate care recommendations
Synthesize all agent analyses into actionable recommendations.
Phase 4: ACT - Execute actions
- Send alerts
- Update care plans
- Trigger interventions
Phase 5: LEARN - Feedback loop
Learn from outcomes to improve future recommendations.
Phase 6: REPORT - Notify stakeholders
- Family members
- Caregivers
- Healthcare providers
Using the Orchestrator
from matercare.src.orchestration import MaterCareOrchestrator
from matercare.src.orchestration.agents import get_care_agent
# Create orchestrator
orchestrator = MaterCareOrchestrator()
# Register care agents
orchestrator.register_agent("triage_agent", get_care_agent("triage"))
orchestrator.register_agent("medication_agent", get_care_agent("medication"))
orchestrator.register_agent("emergency_agent", get_care_agent("emergency"))
orchestrator.register_agent("vital_agent", get_care_agent("vital"))
orchestrator.register_agent("cognitive_agent", get_care_agent("cognitive"))
# Execute care loop
result = await orchestrator.care_loop("senior_123", {
"sensors": {
"motion": True,
"fall": False,
"heart_rate": 72,
"temperature": 36.5
},
"voice": "I'm feeling tired today"
})
print(f"Priority: {result.priority}")
print(f"Recommendation: {result.recommendation}")
print(f"Actions: {result.actions}")
MCP Server for External Agents
The MCP server exposes MaterCare to external AI agents:
# Run MCP server
python -m matercare.src.orchestration.mcp_server
# Or run directly
python matercare/src/orchestration/mcp_server.py
Available tools:
care_loop- Execute full 6-phase care loopassess_senior- Get comprehensive assessmentcheck_emergency- Check for emergenciesreview_medications- Review drugs for interactionsregister_senior- Register new seniornotify_family- Send family notificationsget_knowledge- Query knowledge baseget_care_history- Get historical data
Connect to TAURUS Platform MCPs
from matercare.src.orchestration.integrations import create_connector
# Create connector to TAURUS MCPs
connector = await create_connector()
# Use MCP bridge for eldercare-specific operations
bridge = MaterCareMCPBridge(connector)
# Notify family via email, SMS, WhatsApp, Slack
await bridge.notify_family(
senior_name="John Smith",
message="Fall detected - please check in",
priority="urgent",
channels=["email", "sms", "whatsapp"]
)
# Schedule caregiver visit
from datetime import datetime
await bridge.schedule_caregiver_visit(
senior_name="John Smith",
caregiver_name="Mary",
scheduled_time=datetime(2026, 2, 28, 10, 0),
notes="Regular wellness check"
)
Hardware Setup
Recommended Sensors
| Sensor | Purpose | Cost |
|---|---|---|
| HLK-LD2410 mmWave | Fall detection, vitals | $30 |
| HC-SR501 PIR | Motion detection | $5 |
| RC-51 Door | Wandering detection | $5 |
| Pressure Mat | Bed/chair occupancy | $25 |
Raspberry Pi Setup
# Install
pip install matercare-homes
# Run sensor gateway
python -m matercare.sensors.gateway --senior-id "dad"
Environment Variables
# .env
MATERCARE_MODEL=Taurus-AI-Corp/matercare-llama-3.2-3b
HUGGINGFACE_API_TOKEN=your_token
TWILIO_ACCOUNT_SID=your_sid
TWILIO_AUTH_TOKEN=your_token
TWILIO_PHONE_NUMBER=+1234567890
ALERT_PHONE_NUMBER=+0987654321
DATABASE_URL=postgresql://...
Documentation
Roadmap
- [ ] V1.0 - Core AI + RAG + Sensors
- [ ] V1.1 - Voice integration (Alexa/Google)
- [ ] V1.2 - Mobile caregiver app
- [ ] V2.0 - Enterprise multi-tenant
- [ ] V2.1 - Hardware companion device
License
MIT License - see LICENSE
Author
TAURUS AI Corp - Quantum-Resistant Fintech & Eldercare Platform
- Website: https://q-grid.taurusai.io
- GitHub: https://github.com/Taurus-AI-Corp
- HuggingFace: https://huggingface.co/Taurus-AI-Corp
<p align="center"> Made with ❤️ for our grandparents </p>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。