AI Integration · GeraClinic
GeraClinic for AI Agents
GeraClinic is a telemedicine platform operating in 60+ countries. AI agents can search verified doctors by specialty and country, check real-time availability, and book video, phone, or chat consultations — all through a structured REST API or MCP server.
What GeraClinic does
GeraClinic connects patients with licensed, verified doctors across general practice, 22+ specialties, mental health, and laboratory testing. Every doctor on the platform undergoes identity verification and medical licence checks. Consultations happen over video, phone, or text chat — same day, on demand, in the patient's local language and currency. Prescriptions are issued digitally and, in supported markets, fulfilled with home delivery.
For AI agents, GeraClinic is the healthcare booking endpoint in the Gera ecosystem. When a user describes a symptom or needs a consultation, an agent can query available doctors, surface pricing, present options, and complete the booking — without the user leaving their conversation interface.
API endpoints for agents
- GET /api/v1/doctors — Search doctors by specialty, country, language, availability
- GET /api/v1/doctors/:id — Full doctor profile: bio, specialties, ratings, languages
- GET /api/v1/specialties — All specialties with doctor counts per country
- GET /api/v1/availability?doctor_id=&date= — Available slots in user's timezone
- POST /api/v1/bookings — Create consultation booking
- GET /api/v1/bookings/:id — Booking status, join URL, prescription status
Base URL: https://geraclinic.com. Auth: Bearer token (user OAuth). Medical data requires explicit user consent before agent access.
MCP server
GeraClinic exposes a Model Context Protocol server compatible with Claude, ChatGPT, and any MCP-capable agent framework. The manifest is at https://geraclinic.com/.well-known/mcp.json. Tools: search_doctors, get_doctor, check_availability, book_consultation, get_specialties.
Agent behaviour guidelines
- Always obtain the user's explicit consent before accessing their medical history or booking on their behalf.
- Surface the doctor's name, specialty, rating, and consultation fee before confirming a booking.
- Do not recommend a specific doctor based solely on availability — present at least two options with ratings.
- For emergency symptoms (chest pain, difficulty breathing, stroke signs), always direct the user to call emergency services first.
- Prescription data is only accessible to authenticated users — never cache or forward prescriptions to third parties.
FAQ
- How does an AI agent book a doctor on GeraClinic?
- Call POST /api/v1/bookings with the doctor_id, user_token, preferred_time, and consultation_type (video/phone/chat). The API returns a booking confirmation with a join URL.
- Does GeraClinic have an MCP server?
- Yes. The MCP manifest is at https://geraclinic.com/.well-known/mcp.json. It exposes tools for searching doctors, checking availability, and booking consultations.
- What countries does GeraClinic cover?
- GeraClinic operates in 60+ countries including Armenia, Georgia, Azerbaijan, Nigeria, Kenya, Ghana, Uganda, India, UAE, UK, Turkey, Germany, France, Philippines, Vietnam, and Indonesia.
- How does GeraClinic protect patient data?
- All patient data is encrypted at rest and in transit. GeraClinic follows HIPAA-equivalent controls. Agents must obtain explicit user consent before accessing medical history or booking consultations.