{
  "info": {
    "name": "Browserbase — mcp.ai",
    "description": "REST API for the Browserbase 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/browserbase_tool",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "browserbase_tool_contexts_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/contexts/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "contexts",
            "create"
          ]
        },
        "description": "Tool to create a new browser context. Use when you need to obtain upload credentials for a custom user-data-directory in a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_contexts_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/contexts/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "contexts",
            "get"
          ]
        },
        "description": "Tool to retrieve details of a specific browser context. Use when you have a context ID and need its metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_contexts_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/contexts/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "contexts",
            "update"
          ]
        },
        "description": "Tool to update a specific browser context. Use when you need fresh upload URL and encryption details for an existing context, after obtaining a valid context ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_create_browser_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/browser/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "browser",
            "session"
          ]
        },
        "description": "Tool to create a new browser session. Use when you need an isolated browser context before performing any page interactions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"region\": \"\",\n  \"proxies\": {},\n  \"timeout\": 0,\n  \"keepAlive\": false,\n  \"projectId\": \"\",\n  \"extensionId\": \"\",\n  \"userMetadata\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_delete_context",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/context",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "context"
          ]
        },
        "description": "Tool to delete a browser context and all its stored data (cookies, localStorage, etc.). Use when you need to permanently remove a context.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_delete_extension",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/extension",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "extension"
          ]
        },
        "description": "Tool to delete an uploaded browser extension by its ID. Use when you need to remove an extension from Browserbase.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_delete_session_downloads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/session/downloads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "session",
            "downloads"
          ]
        },
        "description": "Tool to delete all file downloads from a specific browser session. Use when you need to clean up session artifacts or free storage space.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_get_extension",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/extension",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "extension"
          ]
        },
        "description": "Tool to retrieve details of a specific browser extension. Use when you have an extension ID and need its metadata (file name, timestamps, project ID).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Tool to retrieve details of a specific project including settings and configuration. Use when you have a project ID and need its metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_get_project_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "usage"
          ]
        },
        "description": "Tool to retrieve usage statistics for a project including browser minutes and proxy bytes consumed. Use when you need to monitor or track resource usage for a specific project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "Tool to list all projects for the authenticated account. Use when you need to retrieve all projects associated with the current API key.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_sessions_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sessions/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sessions",
            "get"
          ]
        },
        "description": "Tool to retrieve details of a specific browser session. Use when you have a session ID and need its metadata (status, URLs, timestamps).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_sessions_get_debug",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sessions/get/debug",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sessions",
            "get",
            "debug"
          ]
        },
        "description": "Tool to retrieve live debug URLs for a specific session. Use when you need to connect to a running session for debugging.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_sessions_get_downloads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sessions/get/downloads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sessions",
            "get",
            "downloads"
          ]
        },
        "description": "Tool to download files from a specific session. Use after session completion to retrieve all generated artifacts in a ZIP archive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_sessions_get_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sessions/get/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sessions",
            "get",
            "logs"
          ]
        },
        "description": "Tool to retrieve logs of a specific session. Use after actions in a session to inspect network events and data exchange.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_sessions_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sessions/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sessions",
            "list"
          ]
        },
        "description": "Tool to list all browser sessions. Use when you need to retrieve sessions with optional filtering by status or metadata query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_sessions_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sessions/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sessions",
            "update"
          ]
        },
        "description": "Tool to update the status of a specific browser session. Use when you need to request session completion before timeout to avoid additional charges.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"status\": \"\",\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_upload_extension",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/extension",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "extension"
          ]
        },
        "description": "Tool to upload a browser extension for use in sessions. Supports Chrome extension format (ZIP). Use when you need to add custom browser extensions to your Browserbase project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "browserbase_tool_upload_session_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/session/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "session",
            "file"
          ]
        },
        "description": "Tool to upload files to a browser session for file input operations. Use when you need to make files available for file input fields or downloads within a browser automation session.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"file\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}