Add it to Claude Code
claude mcp add matercare-homes -- matercare-mcpMake your agent remember this setup
matercare-homes's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.
npx conare@latestFree · one command · indexes the sessions already on disk. Set up in the browser instead →
What it does
- Passive monitoring using mmWave, PIR, door sensors, and pressure mats
- Fine-tuned Llama-based AI assistant for eldercare queries
- Personalized care plan generation for daily routines and safety
- Real-time alert system for caregivers via SMS and calls
- Healthcare knowledge base retrieval including CDC and NIH guidelines
Tools 3
chatInteract with the fine-tuned eldercare AI for advice on dementia, fall prevention, medications, and nutrition.register_sensorRegister a passive sensor like mmWave, PIR, or door sensor to a senior's profile.retrieve_knowledgeQuery the healthcare knowledge base for guidelines on fall prevention, drug interactions, or emergency protocols.Try it
Original README from Taurus-Ai-Corp/matercare-homes
MaterCare Homes
<a href="https://github.com/Taurus-AI-Corp/matercare-homes"> </a> <a href="https://pypi.org/project/matercare-homes/"> </a> <a href="https://github.com/Taurus-Ai-Corp/matercare-homes/blob/main/LICENSE"> </a> <a href="https://github.com/Taurus-AI-Corp/matercare-homes/actions"> </a> <a href="https://github.com/Taurus-AI-Corp/matercare-homes/security"> </a> <a href="https://pypi.org/project/matercare-homes/"> </a>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