consent_submit
ActiveTool of Chia Health MCP Server
Record a patient's consent confirmation for a specific consent document. The agent must have already presented the full consent text (from consent_text) to the patient and received explicit confirmation. Required parameters: intake_id, consent_id, the patient's exact confirmation text (e.g. 'I agree'), consent method ('ai_agent_conversational'), the AI platform name ('chatgpt', 'claude', 'gemini'), and a session/conversation ID for audit trail. Returns a consent record with timestamp, audit trail details, and the list of remaining consents still needed. All consent records are retained for 10 years per HIPAA requirements. Requires authentication.
Parameters schema
{
"type": "object",
"title": "submit_consentArguments",
"required": [
"intake_id",
"consent_id",
"patient_confirmation"
],
"properties": {
"intake_id": {
"type": "string",
"title": "Intake Id",
"description": "Intake ID this consent belongs to"
},
"timestamp": {
"type": "string",
"title": "Timestamp",
"default": "",
"description": "ISO 8601 timestamp of consent confirmation"
},
"consent_id": {
"type": "string",
"title": "Consent Id",
"description": "Consent document ID being confirmed"
},
"bearer_token": {
"type": "string",
"title": "Bearer Token",
"default": "",
"description": "Authentication token for the patient session"
},
"agent_platform": {
"type": "string",
"title": "Agent Platform",
"default": "",
"description": "AI platform name: 'chatgpt', 'claude', or 'gemini'"
},
"consent_method": {
"type": "string",
"title": "Consent Method",
"default": "ai_agent_conversational",
"description": "Method of consent collection"
},
"agent_session_id": {
"type": "string",
"title": "Agent Session Id",
"default": "",
"description": "Unique session/conversation ID for audit trail"
},
"patient_confirmation": {
"type": "string",
"title": "Patient Confirmation",
"description": "Patient's exact confirmation text (e.g. 'I agree')"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Chia Health MCP Server
https://github.com/chia-health/chia-mcp
2/7 registries