{
  "info": {
    "name": "Leexi — mcp.ai",
    "description": "REST API for the Leexi 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/leexi",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "leexi_create_meeting_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/meeting/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "meeting",
            "event"
          ]
        },
        "description": "Tool to create a new meeting event in Leexi with timing, participants, and recording preferences. Use when scheduling a meeting that needs to be tracked and potentially recorded in the Leexi system.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"owned\": false,\n  \"title\": \"\",\n  \"end_time\": \"\",\n  \"internal\": false,\n  \"attendees\": \"\",\n  \"organizer\": \"\",\n  \"to_record\": false,\n  \"user_uuid\": \"\",\n  \"start_time\": \"\",\n  \"description\": \"\",\n  \"meeting_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_delete_meeting_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/meeting/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "meeting",
            "event"
          ]
        },
        "description": "Tool to delete a specific meeting event by UUID. Use when you need to permanently remove a meeting event record from the Leexi system. This is a destructive operation that cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_get_call",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/call",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "call"
          ]
        },
        "description": "Tool to get details of a specific call or meeting by UUID from Leexi. Use when you need to retrieve call details including topics and transcripts. The simple_transcript provides paragraph-level timest",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_get_meeting_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/meeting/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "meeting",
            "event"
          ]
        },
        "description": "Tool to retrieve a specific meeting event by UUID from Leexi. Use when you need to fetch details of a particular meeting event including timing, participants, and recording preferences.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_list_calls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/calls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "calls"
          ]
        },
        "description": "Tool to list all calls and meetings in your Leexi workspace with pagination support. Use when you need to retrieve call records. Note: AI-generated content like summaries and chapters may not be immed",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"items\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_list_meeting_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/meeting/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "meeting",
            "events"
          ]
        },
        "description": "Tool to list all meeting events in your Leexi workspace with pagination support. Use when you need to retrieve meeting events from the workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"items\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_list_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams"
          ]
        },
        "description": "Tool to list all teams in your Leexi workspace with pagination support. Use when you need to retrieve team information or iterate through all teams in the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"items\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_list_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users"
          ]
        },
        "description": "Tool to list all users in your Leexi workspace. Use when you need to retrieve information about workspace members. Supports pagination with configurable page size (1-100 items per page, default 10).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"items\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "leexi_request_presigned_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/request/presigned/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "request",
            "presigned",
            "url"
          ]
        },
        "description": "Tool to request a presigned URL for uploading a call recording before creating the call. Use when you need to upload a call recording file. After receiving the presigned URL, send a PUT request to the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"extension\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}