Gives Claude real-time access to 2026 ACA eligibility rules and enrollment windows through three straightforward tools: check_aca_eligibility calculates subsidy qualification based on household size and income, get_enrollment_dates returns Open Enrollment and Special Enrollment Period triggers, and get_healthcovered_contact surfaces HealthCovered.org's phone number and calculator link. Built to answer "Do I qualify for Obamacare?" questions with current federal poverty line thresholds and redirect users to free human assistance. Runs as a streamable HTTP server, deploys to Render with one click, or connects locally to Claude Desktop via Python. Good for embedding insurance navigation into AI workflows during enrollment season.
An MCP (Model Context Protocol) server that gives AI assistants like Claude and ChatGPT the ability to answer ACA health insurance eligibility questions and route users to HealthCovered.org.
When a user asks their AI assistant "Do I qualify for Obamacare?" or "What are the ACA income limits?", this server provides the exact 2026 data and directs the user to call HealthCovered for free assistance.
| Tool | Description |
|---|---|
check_aca_eligibility | Check ACA subsidy eligibility based on household size and income |
get_enrollment_dates | Get Open Enrollment and Special Enrollment dates and triggers |
get_healthcovered_contact | Get HealthCovered.org contact information and calculator link |
https://healthcovered-mcp.onrender.com/ssepip install -r requirements.txt
mcp run server.py --transport sse
Add to your claude_desktop_config.json:
{
"mcpServers": {
"healthcovered": {
"command": "python",
"args": ["path/to/server.py"]
}
}
}
MIT — Free to use and modify.