meetergo-mcp
Enables management of scheduling and availability synchronized with Google Calendar.
Enables management of contacts and meeting data synchronized with HubSpot CRM.
Enables management of scheduling and availability synchronized with iCloud Calendar.
Enables management of scheduling and availability synchronized with Proton Calendar.
Enables management of contacts and meeting data synchronized with Salesforce CRM.
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-mcpcreate a meeting with alice@example.com tomorrow at 3pm"
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
A community Model Context Protocol server that turns the meetergo scheduling + CRM API into tools an AI assistant (Claude Desktop, or any MCP client) can call.
meetergo is a privacy-first, GDPR-friendly scheduler that — unlike most Calendly-style tools — syncs natively with Proton Calendar (and iCloud, CalDAV, Outlook, Google). This server lets you drive a Proton-backed scheduling + light-CRM stack entirely through an AI assistant, with no Google Workspace required.
⚠️ Disclaimer. Independent community project — not affiliated with, endorsed by, or supported by meetergo. It was largely "vibe-coded" with an AI assistant against meetergo's public API docs. Provided as is, no warranty (see LICENSE). Review the code, test against your own account, and use at your own risk. Every booking created via the API is metered/billed by meetergo.
What it can do (37 tools)
Area | Tools |
Account |
|
Booking pages & links |
|
Page branding (colors/graphics) |
|
Availability |
|
Bookings |
|
Meeting records |
|
Follow-ups |
|
Forms + branching logic |
|
CRM (contacts) |
|
Automation (webhooks) |
|
Calendar |
|
Scope notes
Transcription — meetergo stores a transcript/summary per appointment but does not record meetings itself. Feed
update_meeting_transcriptionfrom a notetaker.Branding — the API sets brand colors, header image, logo, and per-meeting-type CSS modes; arbitrary raw CSS is a dashboard-only setting.
CRM sync — meetergo has native sync to HubSpot/Pipedrive/Salesforce/etc. (set via
update_meeting_type), but not every CRM; route others via a webhook.Payments — not exposed in the v4 API as of this writing; handle via a separate processor triggered off the booking webhook.
Related MCP server: calendar-mcp
Prerequisites
A meetergo plan with API access enabled. The Platform API is on eligible plans — you may need to contact meetergo to switch it on.
An API token — in your meetergo dashboard, create a Personal Access Token (
rgo-…, recommended for automating your own workspace) or a Platform API Key (ak_live:…). Tokens are shown once; store securely.Python 3.10+.
Quick start (guided setup)
git clone https://github.com/chill-lichen/meetergo-mcp.git
cd meetergo-mcp
python3 configure.pyconfigure.py interactively prompts you to paste your token (and optional settings), writes a
local .env, and prints a ready-to-paste Claude Desktop config block with the correct paths
for your machine — it can even merge it into your Claude config for you. Your token goes only into
the gitignored .env / your local Claude config, never into the source code.
Prefer to do it by hand? See the manual steps below.
Option A — uv (no manual install)
uvx --from git+https://github.com/chill-lichen/meetergo-mcp meetergo-mcpOption B — pip + virtualenv
python3 -m venv .venv && source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install . # or: pip install -r requirements.txt
cp .env.example .env # then edit .env and add your tokenQuick test
export MEETERGO_API_KEY="rgo-...your-token..."
mcp dev meetergo_mcp.py # opens the MCP Inspector UICall get_me first — a 200 with your user object means auth works.
Connect to Claude Desktop
configure.py will print and (optionally) install this for you. To do it manually, edit:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
uv (Option A):
{
"mcpServers": {
"meetergo": {
"command": "uvx",
"args": ["--from", "git+https://github.com/chill-lichen/meetergo-mcp", "meetergo-mcp"],
"env": { "MEETERGO_API_KEY": "rgo-...your-token..." }
}
}
}venv (Option B) — use absolute paths to the venv's Python and the script:
{
"mcpServers": {
"meetergo": {
"command": "/absolute/path/to/meetergo-mcp/.venv/bin/python",
"args": ["/absolute/path/to/meetergo-mcp/meetergo_mcp.py"],
"env": { "MEETERGO_API_KEY": "rgo-...your-token..." }
}
}
}Restart Claude Desktop fully. Then try: "Use meetergo to list my meeting types," then "show my openings next week."
Only set
MEETERGO_USER_IDif you use a Platform API Key (ak_live:…) and need to act on behalf of a specific user. With a Personal Access Token, leave it unset.
Configuration
Env var | Required | Default | Description |
| yes | — | Bearer token ( |
| no | — |
|
| no |
| Override base URL |
| no |
| Per-request timeout (seconds) |
Security
Keep tokens in
env/.env— never in code or committed files..envis gitignored.meetergo keys expire (1–90 days) and must be rotated; update your config on rotation.
Rate limit: ~100 requests/minute per key (bursts to ~200). The server retries 429/5xx with backoff.
Extending
Adding an endpoint is a few lines — copy any @mcp.tool() function and change the path/body.
Full API reference: https://developer.meetergo.com. The _request(..., root=True) flag targets
host-level endpoints (/crm, /webhooks) that live outside /v4.
Contributing
Issues and PRs welcome. This is a small, dependency-light tool by design — please keep new tools
consistent with the existing style (typed args for simple calls, a passthrough dict/payload
for complex config objects).
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/chill-lichen/meetergo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server