healthcare-gov
3.9
The Healthcare-Gov MCP Server provides developers with access to educational content about the Health Insurance Marketplace.
The Healthcare-Gov MCP Server is a powerful tool designed to provide developers with access to a wide range of educational content about the Health Insurance Marketplace. By making our source code freely available, we empower innovators, entrepreneurs, and partners to create new products and services using this information. The server allows you to explore its features and experiment with different endpoints, offering a dynamic playground for testing and development.
Features
- {'name': 'Content Objects', 'description': 'This tool provides access to the body content and metadata for each post available on the Healthcare-Gov platform. It allows users to retrieve detailed information about individual posts, facilitating content analysis and integration.'}
- {'name': 'Content Collections', 'description': 'This tool offers collections of post objects categorized by content type. Available content types include articles, blogs, questions, glossaries, states, and topics. This feature is useful for developers who wish to access grouped content based on specific themes or subjects.'}
- {'name': 'Content Index', 'description': 'The Content Index provides an abridged list of metadata for all posts on the platform. It serves as an aggregate view of the content, enabling users to perform additional queries and generate comprehensive datasets.'}
Usage with Different Platforms
example_script
python
import requests
url = 'https://healthcare-gov-mcp-server/api/content'
response = requests.get(url)
if response.status_code == 200:
data = response.json()
print(data)
else:
print('Failed to retrieve data')