No install? Use cloud.anythingmcp.com directly.
Sign in, install the Microsoft Bookings in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Drive Microsoft Bookings (Microsoft 365 scheduling product) via the Graph API: businesses, services, staff, appointments, customers. 8 tools, OAuth2 Bearer auth.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Microsoft Bookings, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
Microsoft Bookings + Gemini
Drive Microsoft Bookings (Microsoft 365 scheduling product) via the Graph API: businesses, services, staff, appointments, customers. 8 tools, OAuth2 Bearer auth.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
MICROSOFT_GRAPH_ACCESS_TOKEN
Step 1 — Get credentials
0 — Bookings endpoints (learn.microsoft.com/en-us/graph/api/resources/booking-api-overview).
Setup:
- Register an Azure AD app at https://portal.azure.com → App registrations → New registration.
- API permissions → Microsoft Graph → Delegated (or Application) → add:
Bookings.Read.All,BookingsAppointment.ReadWrite.All(write needs admin consent). - Run OAuth2 authorization-code (or client-credentials) flow against
login.microsoftonline.com/{tenant}/oauth2/v2.0/tokento get an access token. - Set
MICROSOFT_GRAPH_ACCESS_TOKEN.
Authentication: Authorization: Bearer ${MICROSOFT_GRAPH_ACCESS_TOKEN}.
…(continued in the in-app connector instructions)
Step 2 — Install the adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Step 3 — Add the connector in Gemini
Gemini CLI reads MCP servers from ~/.gemini/settings.json (or %APPDATA%\gemini\settings.json on Windows). Add:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Get your MCP API key from AnythingMCP → Profile → MCP API Keys → New Key.
- Save the file and restart
gemini. - Run
/mcpinside the Gemini CLI —Microsoft Bookingsshould be listed as available. - Vertex AI Studio: pass
https://cloud.anythingmcp.com/mcpto thetoolsarray of your request with the same Bearer header.
Available tools
| Tool | What it does |
|---|---|
microsoft_bookings_list_businesses | List all Bookings Businesses (mailbox-style booking pages) on the tenant |
microsoft_bookings_get_business | Get a Booking Business by ID with its public profile |
microsoft_bookings_list_services | List services (offerings) of a Booking Business |
microsoft_bookings_list_staff_members | List staff members of a Booking Business |
microsoft_bookings_list_appointments | List appointments (bookings) in a Booking Business |
microsoft_bookings_get_appointment | Get one appointment by ID |
microsoft_bookings_create_appointment | Create a booked appointment |
microsoft_bookings_cancel_appointment | Cancel an appointment |
FAQ
Does Gemini 1.5 Pro or 2.x support MCP? Yes — Gemini CLI ≥ 0.4 and Vertex AI tools API both accept MCP httpUrl connectors with Bearer headers.
Next steps
Was this guide helpful?