Book medical appointments with French doctors by specialty and city via AI agents.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"anteos": {
"url": "https://anteoshealth.com/mcp",
"headers": {
"Authorization": "Bearer anteos_mcp_VOTRE_CLE"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Book medical appointments with French doctors directly from your AI agent.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health / productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
MCP server for using the monday.com API
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Anteos-Health/anteos-booking and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Book medical appointments with French doctors directly from your AI agent.
The Anteos MCP Server lets AI agents search for doctors, check availability, book appointments, and manage cancellations — all confirmed in real-time in the doctor's calendar.
Endpoint: https://anteoshealth.com/mcp
Transport: streamable-http
Full docs: anteoshealth.com/docs/mcp
| Tool | Description |
|---|---|
search_doctors | Search doctors by specialty and/or city, with optional availability filter |
get_doctor_profile | Get full profile: coverage, languages, reviews, and 7-day availability |
find_next_available | Find next available slots over a period, filtered by specialty and/or city |
get_available_slots | Get available time slots for a doctor on a specific date |
book_appointment | Book a confirmed appointment, immediately added to the doctor's calendar |
get_appointment | Retrieve appointment details and status (requires appointment token) |
cancel_appointment | Cancel an existing appointment (requires appointment token) |
reschedule_appointment | Atomically reschedule an appointment to a new date and time |
resend_appointment_token | Re-send the appointment management link to the patient's email |
list_my_appointments | List appointments created by this partner key, with status filtering |
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"anteos": {
"url": "https://anteoshealth.com/mcp",
"headers": {
"Authorization": "Bearer anteos_mcp_VOTRE_CLE"
}
}
}
}
# List available tools
curl -X POST https://anteoshealth.com/mcp \
-H "Authorization: Bearer anteos_mcp_VOTRE_CLE" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
# Search doctors
curl -X POST https://anteoshealth.com/mcp \
-H "Authorization: Bearer anteos_mcp_VOTRE_CLE" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_doctors","arguments":{"specialty":"cardiologue","city":"Paris"}}}'
# Find next available slots
curl -X POST https://anteoshealth.com/mcp \
-H "Authorization: Bearer anteos_mcp_VOTRE_CLE" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"find_next_available","arguments":{"from_date":"2026-05-10","specialty":"cardiologue","city":"Paris"}}}'
All requests require a partner API key in the Authorization header:
Authorization: Bearer anteos_mcp_<your_key>
To get a key: Contact luc.dufour@anteoshealth.com
Published on the official MCP Registry:
io.github.Anteos-Health/anteos-booking