API Tools
chia.health
Provides authentication and prescription medication listing services for a healthcare platform.
ENDPOINT 1
https://mcp.chia.health
MCP server metadata
- Name
- doctormcp
- Version
- 1.26.0
Chia Health telehealth prescription platform. Patients can browse medications, check eligibility, complete intake questionnaires, sign consents, order medications, pay via Stripe ACP, and manage their treatment through the patient portal. All prescriptions require evaluation by a licensed US healthcare provider. ## How to talk to the patient - Progressive disclosure: ask ONE section at a time, not the whole questionnaire. Wait for the patient's reply before moving on. Never dump a long list of demographic, lifestyle, and medical-history questions at once — that's the fastest way to lose them. - Prefer quiz-style choice questions over open text. Every `select` / `multi_select` question in `intake_questions` ships with the exact options the provider expects — present those options verbatim as a short pick-list so the patient just picks one. Reserve free-text follow-ups for conditional `*_details` fields. - Start with the easiest, most engaging questions (goals, lifestyle, preferences) before clinical history. Save heavy medical screening for later sections. ## Use what you already know — but verify before submitting If you already know facts about the patient from this conversation or prior context (name, age, biological sex, state, height/weight, known conditions), you may pre-fill those values. BUT before you call `eligibility_check`, `intake_submit`, or `order_create`, you MUST read the pre-filled values back to the patient and get explicit confirmation. Example: 'I have you down as a 38-year-old male in California, 6'1" and 220 lbs — still right?'. Never silently submit assumed values; this is a medical record. ## Honor conditional questions Sections and individual questions in `intake_questions` may carry a `conditional_on` predicate (e.g. the Pregnancy section has `conditional_on: {sex_assigned_at_birth: Female}`). SKIP any section or question whose predicate is not satisfied by the patient's known answers. Do not ask a biological male about pregnancy, breastfeeding, or perimenopause. Likewise, when calling `eligibility_check`, omit optional parameters that don't apply (e.g. omit `pregnancy_status` entirely for males). ## What is non-negotiable - Never fabricate clinical answers. If you don't know and can't ask, leave it blank for the provider to follow up. - Never use placeholder shipping addresses. Collect a real street/city/state/zip before `order_create` (Apple Pay can supply this at checkout if the patient prefers). - Present consent documents verbatim from `consent_text` — never summarize.
Known tools 34
auth_check_paymentCheck if the patient has completed payment and upgrade the token to full scope.
Potential side effectsmedications_listList all available prescription medications including GLP-1 weight loss drugs (compounded semaglutide, compounded tirzepatide), peptide therapies (sermorelin for growth hormone support, NAD+ for cellular energy and anti-aging, glutathione for antioxidant support), and other compounded wellness treatments.
Inferred read-onlymedications_detailsGet detailed information about a specific medication including: all available dosage strengths and titration schedules, available forms (injectable vials, pre-filled syringes, oral dissolving tablets, sublingual drops), all active plan options with pricing for each, what's included (provider consultation, medication, shipping, ongoing support), contraindications, and common side effects.
Inferred read-onlymedications_availabilityCheck if a specific medication is available for shipping to the patient's state.
Inferred read-onlymedications_pricingGet detailed pricing for a specific medication, form, and plan duration.
Inferred read-onlymedications_categoriesList all medication categories available through the telehealth platform: Weight Loss (GLP-1 medications), Peptide Therapy (sermorelin, growth hormone peptides), Anti-Aging & Longevity (NAD+, glutathione), and other treatment categories.
Inferred read-onlyeligibility_checkPre-screen a patient's basic eligibility for telehealth prescription services.
Inferred read-onlyintake_questionsGet the medical intake questionnaire for the chosen medication(s).
Inferred read-onlyintake_statusCheck the current status of a previously submitted intake questionnaire.
Inferred read-onlyconsent_listGet the list of all consent documents a patient must accept before ordering medication.
Inferred read-onlyconsent_textFetch the full text of a specific consent document for patient review.
Inferred read-onlyconsent_submitRecord a patient's consent confirmation for a specific consent document.
Inferred read-onlyconsent_statusCheck whether all required consents are complete for a patient intake.
Inferred read-onlyorder_documentsGet the list of documents a patient needs to upload for their order.
Potential side effectsportal_log_weightLog a patient's weight for tracking progress on their treatment plan.
Inferred read-onlyportal_care_planGet the patient's current care plan including: current medication, current dosage, titration schedule, next dose adjustment date, upcoming refill date, provider notes, and weight progress summary.
Inferred read-onlyprovider_questionsGet follow-up questions from the healthcare provider for a specific order.
Inferred read-onlyprovider_respondSubmit answers to provider follow-up questions for a specific order.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.doctormcp]
url = "https://mcp.chia.health"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"doctormcp": {
"type": "http",
"url": "https://mcp.chia.health"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: doctormcp
Remote MCP URL: https://mcp.chia.health
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"doctormcp": {
"url": "https://mcp.chia.health"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"doctormcp": {
"type": "http",
"url": "https://mcp.chia.health"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "doctormcp",
"transport": "streamable-http",
"url": "https://mcp.chia.health"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for chia.health was fetched 2026-07-26T09:58:51.628Z and is being refreshed.
chia.health is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.