# Evenium — MCP server on mcp.ai > Connect your Evenium account and use 12 tools for event management straight from your AI agent. Connect with your own API key. Evenium is an all-in-one event management platform that simplifies the planning, execution, and analysis of professional events. By: mcp.ai · official Page: https://mcp.ai/evenium ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_evenium?ms=1787296080000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/evenium/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/evenium/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/evenium/skill.md Postman collection (v2.1): https://mcp.ai/evenium/postman.json ## Tools - evenium_create_contact(email?: string, fields?: object[], gender?: string, company?: string, customId?: string, lastName?: string, firstName?: string) — Tool to create a new contact in the Evenium address book. Use when you need to add a new contact with basic information (name, email, company) and optional custom fields. - evenium_delete_contact(contactId: string) — Tool to permanently remove a contact from the Evenium address book. Use when you need to delete a contact by their ID. WARNING: This operation is irreversible and deletes all associated guests in casc - evenium_get_contact(contactId: string) — Tool to retrieve a single contact by ID from Evenium. Use when you need to fetch details for a specific contact using either Evenium internal ID or custom external ID. - evenium_get_contact_by_custom_id(customId: string) — Tool to retrieve a specific contact from Evenium by their custom ID (external database ID). Use when you need to look up a contact using an identifier from your own CRM or database system. - evenium_get_contact_events(contactId: string, endsAfter?: string, endsBefore?: string, startsAfter?: string, createdAfter?: string, startsBefore?: string, createdBefore?: string) — Tool to retrieve all events that a contact has been invited to or registered for. Use when you need to see a contact's event history with registration details. - evenium_get_contact_events_by_custom_id(customId: string, endsAfter?: string, endsBefore?: string, startsAfter?: string, createdAfter?: string, startsBefore?: string, createdBefore?: string) — Retrieves all events a contact has been invited to using their custom ID. Use this when you need to find all events associated with a specific contact identified by a custom ID from your database. - evenium_get_contacts(page?: integer, order?: string, search?: string, pageSize?: integer) — Tool to retrieve a list of contacts from Evenium. Use when you need to fetch and optionally filter organizer contacts. - evenium_get_events(sort?: string, limit?: integer, start?: integer, search?: string, archived?: boolean, direction?: string, includeDrafts?: boolean, includeDeleted?: boolean) — Retrieves a paginated list of events from Evenium with optional filtering and sorting. Use this to list all events or search for specific events by title, code, or location. Supports pagination via st - evenium_import_contacts(contacts: object[]) — Tool to import multiple contacts at once (batch import). Creates new contacts or updates existing ones based on customId or email matching. Use when you need to bulk create or update contacts in Eveni - evenium_logout() — Tool to log out the current user and invalidate the session token. Use when you need to explicitly end the current session. - evenium_update_contact(email?: string, phone?: string, state?: string, fields?: object[], company?: string, country?: string, lastName?: string, contactId: string, firstName?: string, organization?: string) — Tool to update an existing contact in Evenium by contact ID. Use when you need to modify contact details such as email, name, company, or custom fields. - evenium_update_contact_by_custom_id(email?: string, fields?: object[], company?: string, customId: string, lastName?: string, firstName?: string) — Tool to update a contact in Evenium by custom ID (external ID from your CRM/database). Use when you need to update contact details using your own identifier rather than Evenium's internal ID. ## Example prompts - "What can I do in Evenium?" - "Show me a summary of my Evenium account" ## Links Docs: https://mcp.ai/docs/mcps/evenium Website: https://mcp.ai/mcps/evenium