{
  "info": {
    "name": "Bugbug — mcp.ai",
    "description": "REST API for the Bugbug 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/bugbug",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bugbug_get_test_run_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/test/run/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "test",
            "run",
            "details"
          ]
        },
        "description": "Get detailed information about test runs from BugBug. This action retrieves a paginated list of test runs with comprehensive details including execution status, timing information, browser settings, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"ordering\": \"\",\n  \"page_size\": 0,\n  \"started_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugbug_list_suites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/suites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "suites"
          ]
        },
        "description": "List all available test suites in the Bugbug platform. This tool makes a GET request to the /suites/ endpoint and returns a list of available test suites with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"page_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugbug_list_tests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tests"
          ]
        },
        "description": "Retrieves a list of all available tests in the BugBug account. This action provides access to all tests in the account with pagination support. It returns basic information about each test including i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bugbug_run_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/run/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "run",
            "test"
          ]
        },
        "description": "Execute a test in BugBug and return the test run details. This action triggers a test run with optional configuration for browser, device, viewport, and variable overrides. It returns the test run ID,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profile\": {},\n  \"test_id\": \"\",\n  \"variables\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}