usefulapi

NexHealth MCP server. Read and write NexHealth appointments, patients, providers and locations.

Claude

  1. Open Settings → Connectors → Add custom connector
  2. Paste this URL:
    https://nexhealth.usefulapi.io/mcp
  3. Authenticate with NexHealth when prompted

Cursor · VS Code · Windsurf · Cline

Add to your MCP config, then reload & authorize:

{
  "mcpServers": {
    "nexhealth": {
      "url": "https://nexhealth.usefulapi.io/mcp"
    }
  }
}
live16 toolsFree 100 tool calls / monthPro $9/mo · $90/yr

Tools 16

ToolTypeWhat it does
nexhealth_list_locationsread
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_providersread
List providers
List practitioners (providers) for an institution, optionally scoped to a location. GET /providers.
nexhealth_search_patientsread
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_patientread
Get patient
Fetch a single patient by id. GET /patients/{id}.
nexhealth_list_appointmentsread
List appointments
List appointments in a date/time window, optionally filtered by location, patient, or provider. GET /appointments.
nexhealth_get_appointmentread
Get appointment
Fetch a single appointment by id. GET /appointments/{id}.
nexhealth_list_appointment_slotsread
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_typesread
List appointment types
List the appointment types configured for an institution/location. GET /appointment_types.
nexhealth_list_operatoriesread
List operatories
List operatories (chairs/rooms) for an institution, optionally scoped to a location. GET /operatories.
nexhealth_list_insurance_plansread
List insurance plans
List insurance plans known to the institution, optionally scoped to a location. GET /insurance_plans.
nexhealth_list_insurance_coveragesread
List insurance coverages
List a patient's insurance coverages. GET /insurance_coverages.
nexhealth_list_proceduresread
List procedures
List clinical procedures, optionally scoped to a patient. GET /procedures.
nexhealth_sync_statusread
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_patientwrite
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_appointmentwrite
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_appointmentwrite
Update appointment
UPDATE / reschedule / cancel / confirm an existing appointment by id. MUTATES DATA in the connected EHR/PMS. PATCH /appointments/{id}.

Pricing

PlanPriceLimit
Free$0100 tool calls / month
Pro$9/mo · $90/yrUnlimited

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.