streamable-httpupdated 4mo ago
Book medical appointments with French doctors directly from your AI agent.
Anteos Health — Medical Appointment Booking 能做什么?
Anteos MCP Server
Book medical appointments with French doctors directly from your AI agent.
Overview
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
Available Tools
| 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 |
Quick Start
AI Agents (Cursor / Claude / Cline)
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"anteos": {
"url": "https://anteoshealth.com/mcp",
"headers": {
"Authorization": "Bearer anteos_mcp_VOTRE_CLE"
}
}
}
}
curl
# 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"}}}'
Authentication
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
Registry
Published on the official MCP Registry:
io.github.Anteos-Health/anteos-booking
安装
把 Anteos Health — Medical Appointment Booking 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http anteos-health-medical-appointment-bookin https://anteoshealth.com/mcpcodex mcp add anteos-health-medical-appointment-bookin --url https://anteoshealth.com/mcp{
"mcpServers": {
"anteos-health-medical-appointment-bookin": {
"url": "https://anteoshealth.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"anteos-health-medical-appointment-bookin": {
"type": "http",
"url": "https://anteoshealth.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"anteos-health-medical-appointment-bookin": {
"url": "https://anteoshealth.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"anteos-health-medical-appointment-bookin": {
"serverUrl": "https://anteoshealth.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
10 个工具
Anteos Health — Medical Appointment Booking 向已连接的智能体提供 10 个工具。
- 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
评分
70 / 100
良好
- 文档22/25
- 维护19/25
- 可信度9/20
- 能力8/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 115 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 10 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 1.2.1最新 | 2026年5月8日 |
| 1.2.0 | 2026年4月24日 |
| 1.1.0 | 2026年4月24日 |