NexHealth MCP server. Read and write NexHealth appointments, patients, providers and locations.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"nexhealth": {
"url": "https://nexhealth.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
nexhealth_list_locations | read | List locations List the practice locations for an institution (id, name, address). Good first call to discover location_ids for other tools. GET /locations. |
nexhealth_list_providers | read | List providers List practitioners (providers) for an institution, optionally scoped to a location. GET /providers. |
nexhealth_search_patients | read | Search patients Search patients within a location by name, email, phone, or date of birth. Patient search is always in a location context. GET /patients. |
nexhealth_get_patient | read | Get patient Fetch a single patient by id. GET /patients/{id}. |
nexhealth_list_appointments | read | List appointments List appointments in a date/time window, optionally filtered by location, patient, or provider. GET /appointments. |
nexhealth_get_appointment | read | Get appointment Fetch a single appointment by id. GET /appointments/{id}. |
nexhealth_list_appointment_slots | read | List appointment slots Find bookable appointment start times across providers/locations for a date range. High-value for scheduling. GET /appointment_slots. |
nexhealth_list_appointment_types | read | List appointment types List the appointment types configured for an institution/location. GET /appointment_types. |
nexhealth_list_operatories | read | List operatories List operatories (chairs/rooms) for an institution, optionally scoped to a location. GET /operatories. |
nexhealth_list_insurance_plans | read | List insurance plans List insurance plans known to the institution, optionally scoped to a location. GET /insurance_plans. |
nexhealth_list_insurance_coverages | read | List insurance coverages List a patient's insurance coverages. GET /insurance_coverages. |
nexhealth_list_procedures | read | List procedures List clinical procedures, optionally scoped to a patient. GET /procedures. |
nexhealth_sync_status | read | Sync status Report the data-sync health for the practice's EHR/PMS integration (is the Synchronizer up to date?). GET /sync_status. |
nexhealth_create_patient | write | Create patient CREATE a new patient record in a location. MUTATES DATA — writes to the connected EHR/PMS. GET the patient back to confirm. POST /patients. |
nexhealth_book_appointment | write | Book appointment BOOK a new appointment. MUTATES DATA — creates an appointment in the connected EHR/PMS (optionally notifying the patient). Provide either end_time or appointment_type_id. POST /appointments. |
nexhealth_update_appointment | write | Update appointment UPDATE / reschedule / cancel / confirm an existing appointment by id. MUTATES DATA in the connected EHR/PMS. PATCH /appointments/{id}. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.