addevent-mcp-server (UtahREIA/addevent-mcp-server) is an MCP server listed on the M8ven Trust Index. It scores 54 out of 100, grade D. It declares 16 tools. No publisher has claimed this listing.

D
Caution
54/100

addevent-mcp-server

MCP server that wraps the AddEvent Calendar & Events API v2, allowing Claude to create, search, retrieve, update, and delete events, calendars, and RSVP attendees, plus list timezones.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

UtahREIA

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 15 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
16 tools verified — handlers match their declared behaviour
7 read-only tools verified — handlers contain no write/delete/exec
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
🔐
You'll be asked for 1 credential: ADDEVENT_API_KEY
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes16 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

addevent_create_calendar

Creates a new calendar (a container that events live inside). Args: - title (string, required): The calendar's title. - timezone, weekday_begin, description, internal_name, calendar_color, landing_page_template_id, embeddable_calendar_template_id, custom_data: optional fields. Returns: The cre

addevent_search_calendars

Searches calendars you've previously created. Does NOT create or modify calendars. Args: - calendar_ids (string[], optional): Narrow to specific calendar IDs. - page (number, default 1), page_size (number, 1-20, default 10): Pagination. - sort_by ('created' | 'title'), sort_order ('asc' | 'de

addevent_get_calendar

Retrieves a single calendar by its calendar_id. Args: - calendar_id (string, required): The calendar to retrieve. Returns: The full calendar object as JSON. Error Handling: - Returns "Error: Not found..." (404) if the calendar_id doesn't exist.

addevent_update_calendar

Updates an existing calendar. Only the fields you provide are changed; everything else is left as-is. Args: - calendar_id (string, required): The calendar to update. - Any other field from addevent_create_calendar is optional here — include only what's changing. Returns: The updated calendar o

addevent_delete_calendar

Permanently deletes a calendar. This cannot be undone, and affects any events still on it. Args: - calendar_id (string, required): The calendar to delete. Returns: A confirmation message. Examples: - Before deleting, consider calling addevent_search_events with this calendar_id to check what'

addevent_create_event

Creates a new event on an AddEvent calendar. Args: - title (string, required): The event's title. - calendar_id (string, optional): Target calendar. Defaults to the account's default calendar. Use addevent_search_calendars to find IDs. - datetime_start (string, required): Start date/time, e.g

addevent_search_events

Searches events you've previously created. Does NOT create or modify events. Args: - calendar_ids, event_ids (string[], optional): Narrow to specific calendars or events. - datetime_min, datetime_max (string, optional): Filter by date range. datetime_min matches events ending on/after that time

addevent_get_event

Retrieves a single event by its event_id. Args: - event_id (string, required): The event to retrieve. Returns: The full event object as JSON. Examples: - "Show me the details for event evt_abc123" -> event_id: "evt_abc123". - Don't use when: you don't have the event_id yet (use addevent_sea

addevent_update_event

Updates an existing event. Only the fields you provide are changed; everything else is left as-is. Args: - event_id (string, required): The event to update. - Any other field from addevent_create_event (title, datetime_start, datetime_end, location, description, etc.) is optional here — include

addevent_delete_event

Permanently deletes an event. This cannot be undone. Args: - event_id (string, required): The event to delete. Returns: A confirmation message. Examples: - "Delete the duplicate event we just created" -> event_id set. - Don't use when: you want to hide an event without losing it (there's no

addevent_create_rsvp

Registers an RSVP attendee on an event. Only works on events created with rsvp_enabled: true. Args: - event_id (string, required): The event to RSVP to. - email (string, required): Attendee's email. Must be unique per event. - attending ('going' | 'maybe' | 'not-going', optional): Default 'go

addevent_search_rsvps

Searches RSVP attendees you've previously created. Does NOT create or modify RSVPs. Args: - calendar_ids, event_ids (string[], optional): Narrow to attendees of these calendars or events. - attending (array of 'going' | 'maybe' | 'not-going', optional): Filter by response. - page (number, def

addevent_get_rsvp

Retrieves a single RSVP attendee by attendee_id. Args: - attendee_id (string, required): The RSVP attendee to retrieve. Returns: The full RSVP attendee object as JSON. Error Handling: - Returns "Error: Not found..." (404) if the attendee_id doesn't exist.

addevent_update_rsvp

Updates an existing RSVP attendee. Only the fields you provide are changed; everything else is left as-is. Args: - attendee_id (string, required): The RSVP attendee to update. - email, attending, rsvp_form_data: optional — include only what's changing. Returns: The updated RSVP attendee object

addevent_delete_rsvp

Permanently deletes an RSVP attendee. This cannot be undone. Args: - attendee_id (string, required): The RSVP attendee to delete. Returns: A confirmation message. Error Handling: - Returns "Error: Not found..." (404) if the attendee_id doesn't exist.

addevent_list_timezones

Lists the timezone values supported by AddEvent's timezone field on events and calendars. Args: - search (string, optional): Filter results to timezone names containing this text. Returns: { "timezones": [...], "count": number } Examples: - "What timezone value should I use for Salt Lake City

// known CVEs in dependencies15 high5 medium10 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.6.1GHSA-8r9q-7v3j-jr4g

Anthropic's MCP TypeScript SDK has a ReDoS vulnerability

high@modelcontextprotocol/sdk@1.6.1GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highaxios@1.7.9GHSA-35jp-ww65-95wh

axios Vulnerable to Full Man-in-the-Middle via Prototype Pollution Gadget in `config.proxy`

highaxios@1.7.9GHSA-3g43-6gmg-66jw

axios Vulnerable to Credential Theft and Response Hijacking via Prototype Pollution Gadget in Config Merge

highaxios@1.7.9GHSA-43fc-jf86-j433

Axios is Vulnerable to Denial of Service via __proto__ Key in mergeConfig

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
🔐 secretADDEVENT_API_KEYcp .env.example .env # then paste your API key into
configTRANSPORTPoint it at node dist/index.js (stdio) or http://localhost:3000/mcp (after running =http npm start locally).
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployPORT
// quality suggestions

Tool inputs are validated

Only 0/16 tool handlers declare input schemas (0%)

Declare an inputSchema with zod/joi/yup on every tool definition.

License file

No license file

Add a LICENSE file (MIT, Apache-2.0, etc.).

Tests exist

No test files found

Add tests that exercise each declared tool.

Production dependencies are patched

0 critical, 15 high severity in production deps — @modelcontextprotocol/sdk@1.6.1 (high), @modelcontextprotocol/sdk@1.6.1 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 4 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/utahreia/addevent-mcp-server?variant=verified)](https://m8ven.ai/mcp/utahreia/addevent-mcp-server)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: b7021c9dd6ad613c021312d95a5a0c2d15fbca5b
code hash: 9825d2a7609d99bd4738fb306852c2237e1101b5aee623e66144651e185e8116
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client