meetergo MCP server
OfficialThis server enables AI agents to fully manage Meetergo calendars, CRM, and platform configuration.
Scheduling & Appointments: List meeting types, get availability, book, reschedule, and cancel appointments (cancel all or remove a single attendee). List upcoming/past appointments with pagination, get today's appointments, retrieve details, add guests, update notes, and create single-use booking links.
Calendar Management: List connected calendars (Google, Outlook, etc.).
CRM: Search, retrieve, create, update, bulk create, and delete contacts.
Configuration: Manage meeting types, personal booking pages (branding, links), routing forms (including sending, recipients, data fields), data fields, and webhooks.
Follow-up: Send quick emails to attendees and update meeting transcripts or summaries.
Click on "Install 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., "@meetergo MCP serverbook a 30-minute meeting with Sarah for next Tuesday at 2 PM"
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.
meetergo MCP server
Lets an AI agent actually run a calendar: find slots, book, reschedule, cancel, review what is coming up, and keep the contact record straight.
Not to be confused with the docs MCP server at
https://developer.meetergo.com/mcp, which searches documentation and cannot
change anything. Both are useful and they do different jobs:
Docs MCP | This server | |
Endpoint |
|
|
Tools |
| 56 scheduling, CRM, Mira and config tools |
Can it book? | No | Yes |
Use it to | write an integration | be the integration |
Setup
Create a Personal Access Token at
my.meetergo.com/integrations — it looks
like rgo-… — then either point your client at the hosted server or run this
package locally over stdio. The token works on every plan, including Free.
Hosted
https://mcp.meetergo.com/mcpStreamable HTTP, authenticated with Authorization: Bearer rgo-…. The path
matters: mcp.meetergo.com alone is not the endpoint. For clients that take a
remote URL and headers:
{
"mcpServers": {
"meetergo": {
"url": "https://mcp.meetergo.com/mcp",
"headers": { "Authorization": "Bearer rgo-your_token_here" }
}
}
}Local (npx)
{
"mcpServers": {
"meetergo": {
"command": "npx",
"args": ["-y", "@meetergo/mcp-server"],
"env": { "MEETERGO_TOKEN": "rgo-your_token_here" }
}
}
}Works with Claude Desktop, Claude Code, Cursor, or anything else that speaks MCP.
Scope the token
When you create the token you can limit it to the capabilities the agent actually needs (scheduling, contacts and deals, Mira, forms, account). A limited token is refused on everything outside those groups, including reads, so give it every group whose tools you intend to use — a Mira-only token cannot book, and a scheduling-only token cannot read your knowledge base.
Signing in instead of pasting a token
Not yet. The hosted endpoint authenticates with a Personal Access Token or a
Platform API Key today, and nothing else. OAuth sign-in is not enabled on it, so
a host that probes for it is told so — /.well-known/oauth-protected-resource
answers 404 — rather than being walked into an authorization flow that cannot
finish.
When it is enabled it will need no credential from support: the connector takes a public client id published on this page, with no client secret. There is no dynamic client registration either way.
A Personal Access Token works in every MCP client, on every plan including Free. That is what the rest of this page assumes.
Acting for another user
A Personal Access Token always acts as its owner. To run an agent across a whole
company — an assistant booking on behalf of several colleagues — use a Platform
API Key (ak_live:<uuid>:<secret>) and name the target user:
"env": {
"MEETERGO_TOKEN": "ak_live:...",
"MEETERGO_USER_ID": "the-user-uuid"
}The two token types have opposite requirements, and the server checks both at startup rather than letting you find out mid-booking:
a Platform API Key must have
MEETERGO_USER_ID— the API demands an acting user on nearly every route;a Personal Access Token must not — it always acts as its owner, and the API rejects the header outright.
Against the hosted endpoint the acting user travels as the
X-Meetergo-Api-User-Id request header instead of an environment variable; the
same two rules apply, and sending it with a Personal Access Token is refused.
Environment
The stdio entry (meetergo-mcp, what npx runs):
Variable | Required | Purpose |
| yes |
|
| with a Platform API Key | The user to act as |
| API base override, default | |
| Booking-page host rendered into widget install snippets, default | |
| Per-request timeout, default |
Running the hosted entry yourself
The package also ships meetergo-mcp-http, the Streamable HTTP entry that runs
behind https://mcp.meetergo.com/mcp. Credentials arrive per request in the
Authorization header rather than from the environment, so one process serves
any number of accounts — MEETERGO_TOKEN and MEETERGO_USER_ID are not read
here. It reads:
Variable | Required | Purpose |
| Listen port, default | |
| API base override, default | |
| Booking-page host rendered into widget install snippets, default | |
| Dashboard host used for upgrade links in plan-limit errors, default | |
| This server's public URL, default | |
| all three or none | OpenID issuer of the authorization server, e.g. |
| all three or none | Confidential client this server exchanges tokens into (RFC 8693) |
| all three or none | That client's secret |
The three OAUTH_* variables are all-or-nothing. Set all three and an
inbound access token is validated first — issuer, aud, typ: Bearer, RS256
signature against the issuer's JWKS, expiry — and only then exchanged for a
separate token for the upstream API. The MCP spec forbids forwarding the token a
client handed you, so the exchange is not an optimisation; it is the only path.
Set none and the process is bearer-token-only: Personal Access Tokens and
Platform API Keys work, both .well-known paths answer 404, the 401 challenge
carries no resource_metadata, and an OAuth token is refused rather than passed
upstream.
Set one or two and you get the bearer-token-only behaviour above, not a partial
OAuth — plus a warning log, oauth_disabled_incomplete_config, naming the
variables that are missing.
Retries
Both entries behave the same here. Rate limits and transient upstream errors
(429, 502, 503, 504) get up to three attempts in total (so two retries),
honouring Retry-After where the API sends one.
Retries are not applied blindly. A booking or cancellation that fails ambiguously — a timeout, a dropped connection, a 502 — may already have been applied by the API, and there is no idempotency key to make a second attempt safe. Only reads are retried on those; writes are retried solely on a 429, the one response that states the request was never processed.
Related MCP server: mcp-meetsync
One-prompt onboarding
If your client supports MCP prompts, run meetergo: onboard. Otherwise
paste this:
Set up meetergo for my company. Call get_me and get_setup_status first and tell me what already exists. Then analyse my website with propose_conversion_setup and present the proposed setup — meeting types, qualification questions, the website assistant. Build nothing until I approve. After I approve: create what's missing, turn the questions into a routing form with create_qualification_form, crawl my site, then PROVE it works with run_test_drive and show me the verdicts. Finish by giving me the install snippet, and verify with verify_widget_install after I've pasted it.
The agent audits what exists, proposes, waits for your yes, builds, and then
shows you scripted visitors booking through your own assistant before
anything goes live. A second prompt, meetergo: weekly-review, pulls last
week's conversations and offers to teach the assistant every answer it missed.
Plan limits
Every tool reports plan walls structurally: which limit was hit and where
upgrading happens, so your agent explains the situation instead of failing
vaguely. get_me also returns a plan block (tier, limits) so a good agent
warns you before starting something your plan cannot finish. Connecting the
server itself is never gated — a token from any plan, including Free, works.
Tools
56 tools, covering scheduling end to end. Scheduling is the loop most agents live in; the rest is there so an agent never has to fall back to raw REST.
Scheduling
Tool | Writes? | Purpose |
| Confirm the token works — start here when something looks empty | |
| What can be booked | |
| Bookable slots for a meeting type | |
| yes | Book a slot |
| yes | Move an appointment |
| destructive | Cancel, or drop one attendee |
| Paginated calendar with filters | |
| Today only | |
| One appointment in full, including | |
| yes | Add a guest email to an appointment |
| yes | Write call prep or an outcome back |
| yes | Send a single-use link instead of booking for someone |
| Which calendars are attached |
Follow-up
Tool | Writes? | Purpose |
| yes | One-off email to an attendee (5 per 5 min) |
| yes | Attach a transcript or summary from a notetaker |
Meeting types
Tool | Writes? | Purpose |
| Full config — read before updating | |
| yes | Create a bookable meeting type |
| yes | Change one |
| destructive | Remove one; its page stops working |
Booking page
Tool | Writes? | Purpose |
| Colours, header, links, meeting-type order | |
| yes | Change branding |
Routing forms
Tool | Writes? | Purpose |
| All forms and funnels | |
| Steps, fields and routing rules | |
| yes | Build a qualification form |
| yes | Change one |
| destructive | Remove one; shared links break |
| yes | Send by email or SMS, or mint a link |
| Who got it, who answered | |
| Reusable fields across forms | |
| yes | Add one |
CRM
Tool | Writes? | Purpose |
| Find a contact before creating a duplicate | |
| Full record, by | |
| yes | Add a contact |
| yes | Edit a contact |
| yes | Import many at once (3 calls per min) |
| destructive | Remove a contact and its form answers |
Mira, the website assistant
Everything needed to take a website from "no assistant" to a live one that answers from the company's own pages and books meetings.
Tool | Writes? | Purpose |
| The launch checklist: what exists, what's missing, the next move | |
| The whole assistant config — read before changing it | |
| destructive | Change it; returns the previous settings so you can put them back |
| destructive | Restore a snapshot taken from an earlier update |
| Read a crawled site and propose an assistant, qualification and booking setup | |
| yes | Turn proposed questions into a real, editable routing form |
| Scripted visitors talk to the saved assistant; verdicts + transcripts back | |
| The public key, the embed snippet, and a preview URL | |
| Fetch a page of the customer's site and confirm it serves THEIR widget | |
| yes | Teach the assistant an answer it was missing |
| What visitors asked and where the assistant had no answer |
Knowledge base
Tool | Writes? | Purpose |
| yes | Ingest a website so the assistant can answer from it |
| Progress of a running crawl | |
| What has been ingested | |
| destructive | Remove a document; the assistant stops citing it |
| Retrieve the passages a question would be answered from |
Webhooks
Tool | Writes? | Purpose |
| Endpoints in use (max 6 per company) | |
| yes | Register an HTTPS endpoint |
| yes | Change URL or events |
| destructive | Remove one; events stop immediately |
Writes carry readOnlyHint: false, and everything marked destructive above
carries destructiveHint: true, so hosts can require confirmation before an
agent removes something a human would miss.
What the tools do for you
The API asks for things a model has no way to know. Rather than describing that boilerplate in a docstring and hoping, the tools supply it:
book_appointmentbuilds the nestedattendeeobject, defaultsreceiveRemindersand the required emptynotes, and refuses a booking with no name rather than writing a blank one into the invitation.get_availabilityandbook_appointmentresolve which hosts to compute for. The API rejects both withExpected hostIds or queueIdbefore it even loads the meeting type, and a model only ever has ameetingTypeId.create_meeting_typefills the six required-but-irrelevantmeetingInfofields (customChannelName,connectChannelName, an emptyconfirmationButton, …) that reject the whole request when missing. Anything the schema does not name goes throughadvanced.list_appointmentssupplies the requiredpageandpageSize, which the API has no defaults for.
Development
npm test # vitest
npm run build # tsc -> distThe tests assert the wire format, not just the tool list: which path each
tool calls, and the exact body shape the API's DTOs require. That is deliberate.
0.1.x shipped five tools that could never succeed — wrong paths, wrong query
keys, a flat body where BookingDto wants a nested attendee — and every test
passed, because they only ever checked that the tools existed. Adding or
changing a tool means pinning its request against the route in apps/api.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables AI assistants to manage Google Calendar by listing, creating, updating, and deleting events. It also includes functionality to find available time slots for scheduling.
- AlicenseAqualityCmaintenanceIntegrates the MeetSync calendar negotiation API to enable AI agents to autonomously manage participants, find mutual availability, and handle meeting bookings. It exposes 19 tools for end-to-end scheduling workflows including participant preferences, proposals, and confirmations.1911MIT
- Alicense-qualityCmaintenanceEnables AI assistants to view, create, update, search, and manage Google Calendar events, including multi-account support and availability checks.16Business Source 1.1
- Flicense-qualityDmaintenanceExposes Cal.com scheduling tools to AI agents via MCP, enabling listing event types, checking availability, and managing bookings (create, cancel, reschedule).
Related MCP Connectors
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
Agentic scheduling & booking for field service: availability, jobs, customers, crews, fleet.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/meetergo/meetergo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server