checkout_create
ActiveTool of Chia Health MCP Server
Initiate a checkout session for a medication order. Returns checkout details including line items, total, and payment options. TWO PAYMENT PATHS are supported: 1. **Stripe ACP (preferred)**: If your platform supports Stripe Agentic Commerce Protocol, provision a Shared Payment Token (SPT) and call checkout_complete to pay instantly. 2. **Payment link (fallback)**: If ACP/SPT is not available, present the returned `payment_url` to the patient. This is a Stripe-hosted checkout page where the patient can enter their card and pay directly. After sending the link, call checkout_status to poll for payment completion. Requires authentication.
Parameters schema
{
"type": "object",
"title": "create_checkoutArguments",
"required": [
"order_id"
],
"properties": {
"order_id": {
"type": "string",
"title": "Order Id",
"description": "Order ID to create checkout for"
},
"bearer_token": {
"type": "string",
"title": "Bearer Token",
"default": "",
"description": "Authentication token for the patient session"
}
}
}Parent server
Chia Health MCP Server
https://github.com/chia-health/chia-mcp
2/7 registries