For AI assistants
Book and run Tempi from Claude, ChatGPT or your own agent.
Every Tempi booking link works for people and for AI assistants. Tempi runs two MCP servers. One books time with anyone who has a Tempi link, with no account. The other runs your own account after you sign in.
Book with anyone
Add this server and your assistant can find open times on any Tempi link and book them for you. It needs no account and no API key.
Server URL
https://meettempi.com/mcp
Then ask
Book 30 minutes with meettempi.com/<handle>/<event> next week.
The assistant uses these tools:
get_public_profile: a person's or team's event types, with duration, price and hostsget_available_slots: open start times, grouped by day in your time zonecheck_series: whether every meeting of a repeating series is freecreate_booking: books a time, or a series when the event type allows itget_booking: a booking, by its id and tokenreschedule_booking_as_invitee: moves a booking to another open timecancel_booking_as_invitee: cancels a booking
Free event types are confirmed at once, and both sides get an email. Paid ones return a payment link the person has to open. Keep the returned manageUrl: it is the only way to reschedule or cancel later.
Run your own account
If you have a Tempi account, connect this server instead. You sign in in your browser and choose what the assistant may do: Manage my account, or Read only. It can do only what you can do in the app. To cut off access, disconnect it in Settings.
Server URL
https://meettempi.com/mcp/account
With it, your assistant can:
- set your working hours, days off and meeting limits
- create and change event types, for you or for a team
- create teams and add or remove members
- list your bookings, and reschedule or cancel them
- explain why a time can't be booked (
explain_availability) - connect iCloud Calendar and choose which calendar gets new bookings
It also has every booking tool above. Connecting Google Calendar and setting up payments still happen in the app.
Connect
Use the booking server URL, or the account server URL if you want it to run your account.
- Claude (claude.ai and the desktop app): Settings → Connectors → Add custom connector, then paste the URL.
- ChatGPT: add a custom connector with the URL (developer mode).
- Claude Code: run the command below. For the account server, run
/mcpafterwards to sign in. - Codex: add the server to
~/.codex/config.tomlas below.
Claude Code
claude mcp add --transport http tempi https://meettempi.com/mcp
Codex
[mcp_servers.tempi] url = "https://meettempi.com/mcp"
Both servers are listed in the official MCP Registry as com.meettempi/tempi and com.meettempi/tempi-account.
Without MCP
- Every booking page has a Markdown version for agents that read the web: add
.mdto its URL. - /llms.txt describes the whole flow and lists every tool.
- The same operations are a REST API, described in OpenAPI 3.1. Scripts use an API key from Settings as
Authorization: Bearer bk_….