← Registry

API Tools

chia.health

Provides authentication and prescription medication listing services for a healthcare platform.

1 endpoint34 known toolsFirst detected July 25, 2026Last detected August 29, 2026

ENDPOINT 1

https://mcp.chia.health

No auth detected

MCP server metadata

Name
doctormcp
Version
1.26.0
Capabilities
experimentalpromptsresourcestools
Server instructions

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_start

Start a patient session by providing their contact information.

Inferred read-only
auth_verify_otp

Verify the 6-digit code sent to the patient's email.

Potential side effects
auth_resend_otp

Resend the verification code to the patient's email.

Potential side effects
auth_check_payment

Check if the patient has completed payment and upgrade the token to full scope.

Potential side effects
medications_list

List 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-only
medications_details

Get 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-only
medications_availability

Check if a specific medication is available for shipping to the patient's state.

Inferred read-only
medications_pricing

Get detailed pricing for a specific medication, form, and plan duration.

Inferred read-only
medications_categories

List 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-only
eligibility_check

Pre-screen a patient's basic eligibility for telehealth prescription services.

Inferred read-only
intake_questions

Get the medical intake questionnaire for the chosen medication(s).

Inferred read-only
intake_submit

Submit a completed medical intake questionnaire for provider review.

Inferred read-only
intake_status

Check the current status of a previously submitted intake questionnaire.

Inferred read-only
consent_list

Get the list of all consent documents a patient must accept before ordering medication.

Inferred read-only
consent_text

Fetch the full text of a specific consent document for patient review.

Inferred read-only
consent_submit

Record a patient's consent confirmation for a specific consent document.

Inferred read-only
consent_status

Check whether all required consents are complete for a patient intake.

Inferred read-only
order_create

Create a new prescription medication order.

Potential side effects
order_status

Get the current status of a medication order.

Inferred read-only
order_documents

Get the list of documents a patient needs to upload for their order.

Potential side effects
order_upload

Upload a verification document for a medication order.

Potential side effects
checkout_create

Initiate a checkout session for a medication order.

Inferred read-only
checkout_update

Update an existing checkout session.

Potential side effects
checkout_complete

Complete payment using Stripe ACP (Shared Payment Token).

Potential side effects
checkout_status

Check the payment status of a checkout session.

Potential side effects
checkout_cancel

Cancel an in-progress checkout session.

Inferred read-only
portal_log_weight

Log a patient's weight for tracking progress on their treatment plan.

Inferred read-only
portal_log_side_effects

Log side effects a patient is experiencing.

Inferred read-only
portal_message

Send a message to the patient's healthcare provider.

Potential side effects
portal_care_plan

Get 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-only
portal_refill

Request a medication refill for the patient's current prescription.

Inferred read-only
portal_support

Contact customer support with a question or issue.

Inferred read-only
provider_questions

Get follow-up questions from the healthcare provider for a specific order.

Inferred read-only
provider_respond

Submit answers to provider follow-up questions for a specific order.

Inferred read-only

CONNECT 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.

Trust status Neutral

chia.health is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.