medicover-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MEDICOVER_TIMEOUT | No | HTTP timeout in seconds for API requests. | 30 |
| MEDICOVER_STORE_PATH | No | Path to the credential store file (refresh token). | ~/.config/medicover-mcp/credentials.json |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_patientsA | List every patient the logged-in account can act on. Returns the account holder plus any linked dependents (e.g. children). Each entry has a
stable |
| list_appointmentsA | List a patient's appointments (upcoming by default). Each appointment includes an opaque |
| list_appointment_filtersA | Resolve names → IDs from a patient's own visit history. Returns the specialties, doctors, clinics and regions seen in this patient's appointments, each as {id, name}. Use this to discover the opaque IDs that search_slots needs (e.g. the region id and a specialty id), then narrow further with list_search_filters. Read-only. |
| list_search_filtersA | List the clinics, doctors and languages bookable for a region + specialty selection. Use this after picking a region and specialty to enumerate valid clinic and doctor IDs before calling search_slots. Read-only. |
| search_slotsA | Find available appointment slots for a specialty/region (optionally doctor/clinic). Each returned slot carries a |
| book_appointmentA | Book an available slot for a specific patient.
Note: |
| reschedule_appointmentA | Move an existing appointment to a different slot (atomic; never cancels without rebooking). Only moves to the slot you explicitly pass. With |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct action (booking, listing, searching, rescheduling) on different entities (appointments, patients, filters). There is no ambiguity between them.
All tool names follow the consistent verb_noun pattern in snake_case (e.g., book_appointment, list_patients, search_slots). No mixing of styles or unconventional names.
With 7 tools, the set is well-scoped for an appointment booking domain. Each tool has a clear role, and the count is neither too thin nor too heavy.
The set covers the main lifecycle: search, filter, book, list, and reschedule. However, a cancellation tool is missing, which is a minor gap for a complete appointment management workflow.