auth_start
ActiveTool of Chia Health MCP Server
Start a patient session by providing their contact information. Sends a 6-digit verification code to the patient's email. Returns a session_id (NOT a token). The session_id is used with auth_verify_otp to prove email ownership and get a bearer token. The code is in the email subject line: 'Chia Health: Your code is XXXXXX'. If you have access to the patient's email (e.g. Gmail MCP), search for this subject. No authentication required. Call this when the patient is ready to proceed with their medical intake — after browsing medications and checking eligibility.
Parameters schema
{
"type": "object",
"title": "start_sessionArguments",
"required": [
"email",
"phone",
"first_name"
],
"properties": {
"email": {
"type": "string",
"title": "Email",
"description": "Patient's email address"
},
"phone": {
"type": "string",
"title": "Phone",
"description": "Patient's phone number (US format)"
},
"last_name": {
"type": "string",
"title": "Last Name",
"default": "",
"description": "Patient's last name"
},
"first_name": {
"type": "string",
"title": "First Name",
"description": "Patient's first name"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Chia Health MCP Server
https://github.com/chia-health/chia-mcp
2/7 registries