addevent-mcp-server
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., "@addevent-mcp-serverCreate an event for project review on Monday 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.
addevent-mcp-server
An MCP server that wraps the AddEvent Calendar & Events API v2, so Claude can create, search, retrieve, update, and delete events, calendars, and RSVP attendees on your AddEvent account.
Tools
Events — addevent_create_event, addevent_search_events, addevent_get_event, addevent_update_event, addevent_delete_event
Calendars — addevent_create_calendar, addevent_search_calendars, addevent_get_calendar, addevent_update_calendar, addevent_delete_calendar
RSVP attendees — addevent_create_rsvp, addevent_search_rsvps, addevent_get_rsvp, addevent_update_rsvp, addevent_delete_rsvp
Helper — addevent_list_timezones (looks up valid timezone values for events/calendars)
Related MCP server: google-calendar-mcp
1. Get your AddEvent API key
Sign in at dashboard.addevent.com, go to Settings > API, and copy the API token. This is the value the server sends as Authorization: Bearer <token> on every request.
2. Run it locally (stdio, for Claude Desktop)
npm install
cp .env.example .env # then paste your API key into ADDEVENT_API_KEY
npm run build
npm startTo use it from Claude Desktop, add it to your MCP config (Claude Desktop settings > Developer > Edit Config):
{
"mcpServers": {
"addevent": {
"command": "node",
"args": ["/absolute/path/to/addevent-mcp-server/dist/index.js"],
"env": {
"ADDEVENT_API_KEY": "your-api-token-here"
}
}
}
}3. Deploy to Vercel (remote connector, works from any device)
This mirrors your existing ghl-mcp-remote setup.
npm install -g vercel # if you don't already have it
vercel login
cd addevent-mcp-server
vercelThen, in the Vercel project dashboard: Settings > Environment Variables, add ADDEVENT_API_KEY with your token, and redeploy so the function picks it up.
Your MCP endpoint will be:
https://<your-project-name>.vercel.app/api/mcpAdd that URL as a custom connector in Claude (claude.ai > Settings > Connectors, or wherever your workspace manages MCP connectors), the same way ghl-mcp-remote.vercel.app shows up in your tool list now.
4. Test before connecting
The MCP Inspector is the fastest way to sanity-check tool calls before wiring the server into Claude:
npx @modelcontextprotocol/inspectorPoint it at node dist/index.js (stdio) or http://localhost:3000/mcp (after running TRANSPORT=http npm start locally).
Notes on the AddEvent API
Base URL:
https://api.addevent.com/calevent/v2. Auth is a Bearer token, not an API-key header.Search endpoints return up to
page_size(max 20) results per call — usepageto page through more.The AddEvent docs list the search-calendars response's array key as
calendar(singular), which is inconsistent witheventsandrsvpselsewhere. The client code (src/format.ts,extractArray) checks bothcalendarandcalendarsdefensively so this doesn't silently return an empty list — worth confirming against a real response the first time you runaddevent_search_calendars, and simplifying once confirmed.Deleting an event, calendar, or RSVP attendee is permanent — there's no undo or archive endpoint in this API.
RSVP creation only works on events created with
rsvp_enabled: true.
Extending this server
Not covered yet, but straightforward to add if you need them later: calendar subscribers, RSVP forms, and event/calendar landing page templates (all read-only list/search endpoints in the AddEvent API). Follow the pattern in src/tools/timezones.ts for a minimal read-only tool.
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-qualityDmaintenanceMCP server for Cal.com scheduling, providing ~70 tools to manage schedules, event types, bookings, calendars, webhooks, and teams. Enables natural language control of Cal.com from Claude or any MCP-compatible client.
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server for Google Calendar integration with Claude Desktop. Create, update, delete, and manage calendar events with batch operations and enterprise-grade retry mechanisms.1MIT
- Flicense-qualityCmaintenanceAn MCP server that enables Claude to interact with Google Calendar, including listing, creating, updating, and deleting events, as well as checking availability.
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server that allows Claude and other MCP clients to interact with Google Calendar. This server enables AI assistants to manage your calendar events, check availability, and handle scheduling tasks.MIT
Related MCP Connectors
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
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/UtahREIA/addevent-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server