AI agents for medication browsing, intake, and prescription management.
Chia Health MCP Server
MCP (Model Context Protocol) server for the Chia Health telehealth prescription platform. Enables AI assistants (ChatGPT, Claude, Gemini, Copilot, and custom agents) to help patients browse medications, complete medical intake, sign consent documents, place orders, pay via Stripe ACP, and manage their treatment — all through natural conversation.
Available treatments include GLP-1 medications (semaglutide, tirzepatide including tablets), peptide therapies (sermorelin, NAD+, glutathione), and longevity programs. All prescriptions are evaluated by licensed US healthcare providers and delivered from FDA-regulated 503A compounding pharmacies across all 50 US states + DC.
Getting Started
doctormcp is a remote MCP server — connect over the network, no local installation required.
Server URL: https://mcp.chia.health/
Transport: Streamable HTTP
Metadata: https://mcp.chia.health/server.json
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"chia-health": {
"url": "https://mcp.chia.health/"
}
}
}
Cursor
Add to .cursor/mcp.json in your project or ~/.cursor/mcp.json globally:
{
"mcpServers": {
"chia-health": {
"url": "https://mcp.chia.health/"
}
}
}
Cline / VS Code
Add to your Cline MCP settings:
{
"mcpServers": {
"chia-health": {
"url": "https://mcp.chia.health/"
}
}
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"chia-health": {
"serverUrl": "https://mcp.chia.health/"
}
}
}
Other MCP Clients
Any MCP client that supports streamable HTTP transport can connect:
- Server URL:
https://mcp.chia.health/ - Transport: Streamable HTTP
- Server metadata:
https://mcp.chia.health/server.json
Verify Connection
Once connected, your AI assistant can immediately call these public tools (no auth required):
doctormcp_list_categories → medication categories
doctormcp_list_medications → all medications with pricing
doctormcp_check_availability → check if a medication ships to your state
What Can Your AI Assistant Do?
| Category | Tools | Auth |
|---|---|---|
| Discovery — browse medications, pricing, availability | 5 | No |
| Qualification — eligibility checks, intake questionnaires | 4 | Partial |
| Consent — present and sign consent documents | 4 | Yes |
| Ordering — place orders, upload ID verification | 4 | Yes |
| Checkout — Stripe ACP payments or payment links | 5 | Yes |
| Patient Portal — log weight, message provider, refills | 6 | Yes |
| Provider — answer follow-up questions from your provider | 2 | Yes |
Important: All prescriptions are evaluated and approved by licensed US healthcare providers. doctormcp facilitates the patient workflow — it does not make clinical decisions.
Authentication
Discovery tools are public. Patient-specific tools require a bearer token issued during the intake flow. See the Tool Catalog for per-tool auth requirements.
Tool Catalog
Discovery (public, no auth)
| Tool | Description |
|---|---|
doctormcp_list_medications |
List all medications with categories, forms, and pricing |
doctormcp_get_medication_details |
Detailed info for a specific medication (plans, pricing, what's included) |
doctormcp_check_availability |
Check if a medication ships to a given state |
doctormcp_get_pricing |
Price breakdown for a specific medication/form/plan combo |
doctormcp_list_categories |
List medication categories (Weight Loss, Peptides, Anti-Aging, etc.) |
Qualification (public + auth)
| Tool | Auth | Description |
|---|---|---|
doctormcp_check_eligibility |
No | Pre-screen age, state, BMI, and medical conditions |
doctormcp_get_intake_questions |
No | Get the structured intake questionnaire for a medication |
doctormcp_submit_intake |
Yes | Submit completed intake for provider review |
doctormcp_get_intake_status |
Yes | Check intake review status (under review, approved, de |
Tools (9)
doctormcp_list_medicationsList all medications with categories, forms, and pricingdoctormcp_get_medication_detailsDetailed info for a specific medicationdoctormcp_check_availabilityCheck if a medication ships to a given statedoctormcp_get_pricingPrice breakdown for a specific medication, form, and plandoctormcp_list_categoriesList medication categoriesdoctormcp_check_eligibilityPre-screen age, state, BMI, and medical conditionsdoctormcp_get_intake_questionsGet the structured intake questionnaire for a medicationdoctormcp_submit_intakeSubmit completed intake for provider reviewdoctormcp_get_intake_statusCheck intake review statusConfiguration
{"mcpServers": {"chia-health": {"url": "https://mcp.chia.health/"}}}