{
  "info": {
    "name": "Mindbody — mcp.ai",
    "description": "REST API for the Mindbody 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/mindbody",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "mindbody_list_accessible_sites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accessible/sites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accessible",
            "sites"
          ]
        },
        "description": "List Mindbody sites accessible to the connected API key, or retrieve fuller details by filtering to one site ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"site_ids\": \"\",\n  \"next_cursor\": \"\",\n  \"include_lead_channels\": false,\n  \"include_per_staff_pricing\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mindbody_list_active_session_times",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/active/session/times",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "active",
            "session",
            "times"
          ]
        },
        "description": "List configured business-hour time slots and booking increments. This does not report actual appointment availability.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"end_time\": \"\",\n  \"start_time\": \"\",\n  \"next_cursor\": \"\",\n  \"schedule_type\": \"\",\n  \"session_type_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mindbody_list_classes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/classes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "classes"
          ]
        },
        "description": "Search scheduled class instances by date, location, program, session type, instructor, or known class IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"class_ids\": \"\",\n  \"staff_ids\": \"\",\n  \"next_cursor\": \"\",\n  \"program_ids\": \"\",\n  \"location_ids\": \"\",\n  \"semester_ids\": \"\",\n  \"end_date_time\": \"\",\n  \"modified_since\": \"\",\n  \"start_date_time\": \"\",\n  \"session_type_ids\": \"\",\n  \"class_schedule_ids\": \"\",\n  \"class_description_ids\": \"\",\n  \"hide_canceled_classes\": false,\n  \"within_scheduling_window\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mindbody_list_enrollments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/enrollments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "enrollments"
          ]
        },
        "description": "Search scheduled multi-session enrollments such as workshops and events by date and business resource IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"end_date\": \"\",\n  \"staff_ids\": \"\",\n  \"start_date\": \"\",\n  \"next_cursor\": \"\",\n  \"program_ids\": \"\",\n  \"location_ids\": \"\",\n  \"session_type_ids\": \"\",\n  \"class_schedule_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mindbody_list_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "locations"
          ]
        },
        "description": "List physical or online locations configured for the connected Mindbody site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mindbody_list_session_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/session/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "session",
            "types"
          ]
        },
        "description": "List service and session types configured at the connected Mindbody site, including IDs used by schedule and availability searches.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\",\n  \"online_only\": false,\n  \"program_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mindbody_list_staff",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/staff",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "staff"
          ]
        },
        "description": "List basic staff directory records available to the connected API key, with optional role, activity, and ID filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"filters\": \"\",\n  \"staff_ids\": \"\",\n  \"next_cursor\": \"\",\n  \"include_inactive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mindbody_search_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "products"
          ]
        },
        "description": "Search the connected site's read-only retail product catalog by text, IDs, categories, location, or online-sale status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"location_id\": 0,\n  \"next_cursor\": \"\",\n  \"product_ids\": \"\",\n  \"search_text\": \"\",\n  \"sell_online\": false,\n  \"category_ids\": \"\",\n  \"sub_category_ids\": \"\",\n  \"secondary_category_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}