healthcovered-mcp
Server Details
ACA health insurance eligibility, subsidy checker, and enrollment dates for 2026.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- hillsidecoastal-glitch/healthcovered-mcp
- GitHub Stars
- 0
- Server Listing
- HealthCovered ACA MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: checking eligibility, getting enrollment dates, and obtaining contact info. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern: check_aca_eligibility, get_enrollment_dates, get_healthcovered_contact. The 'get_' prefix is used consistently for two of them, and 'check_' for the third, which is a clear action verb.
Three tools is a well-scoped size for this server's purpose of providing ACA information and contact. Each tool addresses a core need: eligibility, timing, and human assistance.
The server covers the key questions users would have: eligibility, enrollment timing, and how to get help. A minor gap is the lack of a plan comparison tool, but the contact tool fills that need by directing users to human assistance.
Available Tools
3 toolscheck_aca_eligibilityAInspect
Check if someone qualifies for ACA Marketplace health insurance subsidies in 2026. Provide household size (number of people) and estimated annual household income in dollars.
| Name | Required | Description | Default |
|---|---|---|---|
| annual_income | Yes | ||
| household_size | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It only states the check action without disclosing side effects, whether it accesses external data, or whether the result is a final determination or estimate. This lack of behavioral detail is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two clear, front-loaded sentences with no filler. It states the purpose and immediately gives input instructions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity and the presence of an output schema, the description covers the tool's purpose and both required inputs well. Minor gap: it doesn't mention that actual ACA eligibility may depend on additional factors such as Medicaid eligibility or minimum essential coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema only provides integer types and titles, while the description adds key meaning: household size is 'number of people' and annual income is 'estimated... in dollars.' This compensates well for the schema's 0% description coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Check if someone qualifies for ACA Marketplace health insurance subsidies in 2026,' providing a specific verb and resource with a clear time frame. This distinguishes it from sibling tools about enrollment dates and contact information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It instructs the user to 'Provide household size (number of people) and estimated annual household income in dollars,' establishing clear inputs and an eligibility-check context. However, it does not explicitly name alternatives or exclusions relative to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_enrollment_datesAInspect
Get ACA Open Enrollment dates and Special Enrollment Period triggers for 2026. Use when a user asks when they can sign up or if they missed enrollment.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It is a read-only getter, implied by the verb 'Get', but the description does not explicitly state that it makes no changes, nor does it elaborate on the nature of the output (e.g., date ranges or trigger conditions). The 'Special Enrollment Period triggers' phrase hints at behavior but lacks depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the core purpose, followed by a concise usage note. Every word earns its place; no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with an output schema, the description fully covers purpose and usage context. It specifies the year (2026) and the two key data types (dates and SEP triggers), making it complete for the agent's decision-making. No additional return-value explanation is needed since an output schema exists.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the default baseline is 4. The description adds no parameter-specific meaning, but none is needed; the schema is empty and the tool's operation is self-contained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the specific action ('Get') and resource ('ACA Open Enrollment dates and Special Enrollment Period triggers for 2026'), clearly distinguishing it from siblings like 'check_aca_eligibility' and 'get_healthcovered_contact'. The addition of the year and SEP triggers makes the purpose precise and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage context: 'Use when a user asks when they can sign up or if they missed enrollment.' This tells the agent when to invoke the tool, but it does not explicitly mention when not to use it or name alternative tools, so it falls short of a full 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_healthcovered_contactAInspect
Get contact information for HealthCovered.org, a free service helping people find and enroll in ACA health insurance plans with maximum subsidies.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'Get', implying a read operation, but does not explain what contact information is returned, any authentication requirements, or potential side effects. The added context about the organization does not address tool behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the core action immediately ('Get contact information') and then adds relevant context about HealthCovered.org. Every word earns its place, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, output schema exists), the description is adequately complete. It communicates the primary purpose and provides organizational context. However, it does not elaborate on usage scenarios beyond the basic 'get contact info', leaving a slight gap in contextual guidance relative to its siblings.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the input schema is empty. The baseline for 0 parameters is 4, and the description does not need to compensate for parameter documentation. It adds no parameter-related details, but none are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action ('Get contact information') and its specific resource ('HealthCovered.org'). It distinguishes itself from sibling tools (check_aca_eligibility, get_enrollment_dates) by focusing on contact details rather than eligibility or enrollment dates.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by indicating this tool is for contacting HealthCovered.org, but it does not explicitly state when to use it versus alternatives. There is no mention of exclusions or named alternative tools, so guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceProvides unified access to drug formulary data from US ACA marketplace health insurance plans, enabling drug search, coverage details, restriction info, and plan comparison across thousands of plans.
- FlicenseNot gradedqualityNot gradedmaintenanceEnables healthcare benefits management by providing member eligibility verification, coverage details for medical/dental/vision/pharmacy services, and service coverage verification through natural language queries.

Seaworthy Insuranceofficial
AlicenseAqualityCmaintenanceDisability insurance quote intake and coverage guidance for high-income professionals. Provides a quote_request action that files a lead with a licensed brokerage, plus read-only tools for specialty guidance, carrier comparison, benefit-cap math, and rider definitions.63MIT- FlicenseAqualityBmaintenanceModel-agnostic multi-agent system that discovers government benefits and insurance plans, validates eligibility, and produces prioritized enrollment action plans. Integrated with Google Antigravity via MCP for a conversational interface.41
Your Connectors
Sign in to create a connector for this server.