order_create
ActiveTool of Chia Health MCP Server
Create a new prescription medication order. The patient must have completed intake questionnaire and consent before ordering. Required: medication name, selected form (injectable, tablet, drops), plan duration (1, 4, or 6 months), shipping address. The order is reviewed by a licensed US healthcare provider who makes the final prescribing decision. If approved, medication is compounded at a US-licensed 503A pharmacy and shipped directly to the patient. Returns order ID, estimated provider review time, and expected delivery window. Payment is processed via Stripe Agentic Commerce Protocol (ACP). Requires authentication.
Parameters schema
{
"type": "object",
"title": "create_orderArguments",
"required": [
"intake_id",
"medication",
"form",
"plan_months",
"shipping_address"
],
"properties": {
"form": {
"type": "string",
"title": "Form",
"description": "Medication form: 'injectable', 'tablet', or 'drops'"
},
"intake_id": {
"type": "string",
"title": "Intake Id",
"description": "Approved intake ID from intake_submit"
},
"medication": {
"type": "string",
"title": "Medication",
"description": "Medication name to order"
},
"plan_months": {
"type": "integer",
"title": "Plan Months",
"description": "Plan duration in months (1, 4, or 6)"
},
"bearer_token": {
"type": "string",
"title": "Bearer Token",
"default": "",
"description": "Authentication token for the patient session"
},
"shipping_address": {
"type": "object",
"title": "Shipping Address",
"description": "Shipping address with keys: line1, city, state, zip, and optional line2",
"additionalProperties": true
}
}
}Parent server
Chia Health MCP Server
https://github.com/chia-health/chia-mcp
2/7 registries