Partner Booking MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Partner Booking MCP ServerCheck availability for a haircut on July 28."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Partner Booking MCP Server (demo external agent)
A tiny, self-contained external MCP server that simulates a third-party vendor's appointment-booking agent. Point your platform's agent at its public URL to demonstrate real-time agent-to-agent interoperability — your agent orchestrating and exchanging tasks/context with an AI capability that is not hosted on your platform.
Transport: Streamable HTTP (stateless), so it deploys to any Node host and is reachable as a normal HTTPS endpoint.
Tools exposed
Tool | What it does |
| Open slots for a service + date |
| Books a slot, returns a confirmation id |
| Cancels by confirmation id, frees the slot |
| Lists bookings (optional customer filter) |
Services seeded: haircut, dental-checkup, car-service, consultation.
Dates seeded: 2026-07-27, 2026-07-28, 2026-07-29. (In-memory — resets on restart.)
Related MCP server: appointment-scheduler-mcp
Run locally
npm install
npm start # -> http://localhost:3000/mcpQuick smoke test:
curl -X POST http://localhost:3000/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'Deploy to a public URL
Render (easiest — render.yaml included):
Push this folder to a GitHub repo.
Render → New → Blueprint → pick the repo. It reads
render.yaml.You get a URL like
https://partner-booking-mcp.onrender.com. Your MCP endpoint ishttps://.../mcp.
Railway / Fly / Cloud Run: same idea — Node app, start command node server.js,
expose $PORT. A Dockerfile is included if the host prefers containers.
Free Render instances sleep when idle. Hit the URL once ~30s before the demo to wake it.
Connect it to your platform (the demo moment)
Register it as a remote MCP server in whatever your platform uses:
Endpoint / URL:
https://<your-host>/mcpTransport: Streamable HTTP
Auth: none (demo). Add a bearer-token check in
server.jsif your platform requires one.
To try it in a generic MCP client, the connection config looks like:
{
"mcpServers": {
"partner-booking": {
"type": "http",
"url": "https://<your-host>/mcp"
}
}
}Suggested demo script
User asks your platform's agent: "Book me a haircut next Monday morning."
Your agent calls
check_availabilityon this external server → shows the slots.Your agent calls
book_appointment→ returns confirmationBK-XXXXXXXX.Emphasise: the booking logic + data live in a separate, third-party service — your platform discovered its tools and orchestrated the task live over MCP.
Optional:
cancel_appointmentto show a two-way, stateful exchange.
Notes for a production-shaped story
Add auth (bearer/OAuth) at the
/mcproute.Swap the in-memory store for a real DB/booking API.
Same pattern maps to any partner capability — this is intentionally minimal so the interoperability is the star, not the business logic.
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for Cliniko — patients, appointments, availability, and invoices for AI agents.
- AstrocalOAuthdev.astrocal
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
Agent-to-business commerce sandbox: intents, offers, bookings. Demo data, ed25519-signed calls.
Read appointments, types, calendars and availability; create, cancel or reschedule bookings.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables users to manage medical appointments by searching for doctors, checking availability, and booking sessions through a natural language interface. It serves as a reference implementation for advanced MCP features like symptom-based specialist recommendations and multi-step scheduling workflows.6 npmMIT
- AlicenseNot gradedqualityCmaintenanceExposes the Appointment Scheduler API to AI agents as an MCP server, enabling them to list users and services, check availability, book, list, and cancel appointments via natural language.Apache 2.0
- AlicenseAqualityBmaintenanceEnables MCP-compatible clients to act as an AI receptionist for a small medical clinic, handling appointment booking and rescheduling, patient registration, intake, reminders, and FAQ answers.151MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to manage doctor appointments by creating, finding, checking status, canceling, and rescheduling appointments through an MCP server that connects to an external appointment REST API.-