MCP Hub
Back to servers

anteos-booking

Book medical appointments with French doctors by specialty and city via AI agents.

Registry
Updated
Apr 24, 2026

Anteos MCP Server

Book medical appointments with French doctors directly from your AI agent.

MCP Registry Protocol

Overview

The Anteos MCP Server lets AI agents search for doctors, 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

ToolDescription
search_doctorsSearch doctors by specialty and city
book_appointmentBook a confirmed appointment
get_appointmentGet appointment status by ID
cancel_appointmentCancel an existing appointment

Quick Start

AI Agents

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"}}}'

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


Full documentation · Anteos Health

Reviews

No reviews yet

Sign in to write a review