Skip to main content
Glama
UtahREIA

addevent-mcp-server

by UtahREIA

Search AddEvent RSVP Attendees

addevent_search_rsvps
Read-onlyIdempotent

Search past RSVP attendees by event, calendar, or response status. Filter, sort, and paginate to find who is going, maybe, or not going.

Instructions

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, default 1), page_size (number, 1-20, default 10): Pagination.

  • sort_by ('created' | 'event_id' | 'attending' | 'email'), sort_order ('asc' | 'desc'): Sorting.

Returns: { "rsvps": [ ...attendee objects... ], "count": number, "page": number, "page_size": number } An empty "rsvps" array means no matches, not an error.

Examples:

  • "Who's RSVP'd yes to the Main Monthly meetup?" -> event_ids: [that event's ID], attending: ["going"].

  • "How many people said maybe across all our events this month?" -> attending: ["maybe"], combined with an event_ids or calendar_ids filter.

  • Don't use when: you already have the attendee_id (use addevent_get_rsvp, it's cheaper).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number of results, starting at 1.
sort_byNoField to sort by: 'created', 'event_id', 'attending', or 'email'.
attendingNoLimit to attendees with these responses.
event_idsNoLimit to attendees of these specific events.
page_sizeNoNumber of results per page, between 1 and 20.
sort_orderNoSort direction, 'asc' or 'desc'. Requires sort_by.
calendar_idsNoLimit to attendees of events on these calendars.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish read-only, idempotent, non-destructive behavior, but the description adds substantial behavioral context beyond that: return shape, pagination semantics, empty 'rsvps' array meaning 'no matches, not an error', and explicit statement that it works only on previously created RSVPs. This is rich supplementary transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and front-loaded: a one-sentence purpose, a concise Args list, Returns object, examples, and an explicit anti-use case. Every section earns its place, and the formatting makes it easy to scan. Despite its length, it avoids redundancy and is optimally organized for an AI agent.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters, no output schema, and a moderately complex search tool, the description is complete: it documents all parameters with meaning, specifies the full return structure, clarifies edge-case behavior (empty results), and provides usage examples. There are no significant gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already describes all 7 parameters (100% coverage), so the baseline is 3. The description adds value by grouping related parameters (calendar_ids/event_ids), clarifying the meaning of attending ('Filter by response'), and giving real-world examples that illustrate parameter combinations. This exceeds baseline but does not need to fully compensate for schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Searches RSVP attendees you've previously created.' It also explicitly distinguishes itself from mutation tools ('Does NOT create or modify RSVPs') and from the single-record sibling addevent_get_rsvp, making the scope unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage guidance is explicit and actionable. The description includes a direct 'Don't use when' section pointing to addevent_get_rsvp as cheaper when attendee_id is already known, and provides concrete examples showing when to use filters like attending and event_ids. This exceeds simple context and gives clear decision rules.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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