From Evite
This skill should be used when the user asks about Evite events or invitations. Triggers on phrases like "check Evite", "my Evite events", "who RSVP'd", "Evite guest list", "RSVP to the party", "message my Evite guests", "create an Evite invite", or any request involving event invitations, guest lists, RSVPs, or party/event hosting on evite.com.
How this skill is triggered — by the user, by Claude, or both
Slash command
/evite:eviteThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
MCP server for [Evite](https://www.evite.com) — read and act on your events as both **guest** (invitations received) and **host** (events you created): list events, view guest lists & RSVP tallies, RSVP, message guests, and create/edit events.
MCP server for Evite — read and act on your events as both guest (invitations received) and host (events you created): list events, view guest lists & RSVP tallies, RSVP, message guests, and create/edit events.
Add to .mcp.json in your project or ~/.claude/mcp.json:
{
"mcpServers": {
"evite": {
"command": "npx",
"args": ["-y", "evite-mcp"],
"env": {
"EVITE_EMAIL": "[email protected]",
"EVITE_PASSWORD": "yourpassword"
}
}
}
}
npm install -g evite-mcp
The server resolves a session in priority order (see the README for details):
EVITE_EMAIL + EVITE_PASSWORD — headless email/password login (preferred).EVITE_SESSION_COOKIE — a raw cookie: header copied from a signed-in evite.com tab.EVITE_DISABLE_FETCHPROXY=1.Read (6 + healthcheck): evite_list_events, evite_get_event, evite_list_guests, evite_rsvp_summary, evite_list_messages, evite_list_templates, evite_healthcheck.
Write (confirm-gated): evite_rsvp, evite_send_message, evite_broadcast, evite_create_event, evite_update_event, evite_add_guest, evite_update_guest, evite_remove_guest, evite_send, evite_cancel_event, evite_reinstate_event, evite_duplicate_event.
Every write tool takes confirm: boolean. Without confirm: true it makes no network call and returns a dry-run preview of exactly what would be sent — the safe default. The authoring flow is evite_create_event → evite_add_guest → evite_send.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub chrischall/evite-mcp --plugin evite