{
  "info": {
    "name": "Demio — mcp.ai",
    "description": "REST API for the Demio 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/demio",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "demio_create_join_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/join/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "join",
            "link"
          ]
        },
        "description": "Tool to register an attendee and obtain their unique Demio join link. Use after confirming a valid event_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"event_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "demio_get_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "event"
          ]
        },
        "description": "Tool to retrieve event details by ID. Use when you need the full metadata for a specific Demio event.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "demio_list_event_date_participants",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/event/date/participants",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "event",
            "date",
            "participants"
          ]
        },
        "description": "Tool to list participants for a specific event date. Use after scheduling an event session to retrieve attendees.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date_id\": \"\",\n  \"event_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "demio_list_event_dates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/event/dates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "event",
            "dates"
          ]
        },
        "description": "Tool to list all scheduled session dates for a given Demio event. Use when you need the session schedule by event ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "demio_list_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events"
          ]
        },
        "description": "Tool to retrieve a list of Demio events. Use when you need to fetch events optionally filtered by type or paginated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"type\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "demio_ping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ping"
          ]
        },
        "description": "Tool to perform a health check on the Demio API. Use to verify the API is reachable before other calls.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"add_params\": {},\n  \"x_request_id_override\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}