{
  "info": {
    "name": "Evenium — mcp.ai",
    "description": "REST API for the Evenium MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/evenium",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "evenium_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"fields\": \"\",\n  \"gender\": \"\",\n  \"company\": \"\",\n  \"customId\": \"\",\n  \"lastName\": \"\",\n  \"firstName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_delete_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact"
          ]
        },
        "description": "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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contactId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_get_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contactId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_get_contact_by_custom_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/by/custom/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "by",
            "custom",
            "id"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_get_contact_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "events"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contactId\": \"\",\n  \"endsAfter\": \"\",\n  \"endsBefore\": \"\",\n  \"startsAfter\": \"\",\n  \"createdAfter\": \"\",\n  \"startsBefore\": \"\",\n  \"createdBefore\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_get_contact_events_by_custom_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/events/by/custom/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "events",
            "by",
            "custom",
            "id"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customId\": \"\",\n  \"endsAfter\": \"\",\n  \"endsBefore\": \"\",\n  \"startsAfter\": \"\",\n  \"createdAfter\": \"\",\n  \"startsBefore\": \"\",\n  \"createdBefore\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_get_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contacts"
          ]
        },
        "description": "Tool to retrieve a list of contacts from Evenium. Use when you need to fetch and optionally filter organizer contacts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"order\": \"\",\n  \"search\": \"\",\n  \"pageSize\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_get_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events"
          ]
        },
        "description": "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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"search\": \"\",\n  \"archived\": false,\n  \"direction\": \"\",\n  \"includeDrafts\": false,\n  \"includeDeleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_import_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/import/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "import",
            "contacts"
          ]
        },
        "description": "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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contacts\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_logout",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/logout",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "logout"
          ]
        },
        "description": "Tool to log out the current user and invalidate the session token. Use when you need to explicitly end the current session.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_update_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"state\": \"\",\n  \"fields\": \"\",\n  \"company\": \"\",\n  \"country\": \"\",\n  \"lastName\": \"\",\n  \"contactId\": \"\",\n  \"firstName\": \"\",\n  \"organization\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evenium_update_contact_by_custom_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/by/custom/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "by",
            "custom",
            "id"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"fields\": \"\",\n  \"company\": \"\",\n  \"customId\": \"\",\n  \"lastName\": \"\",\n  \"firstName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}