Browserbase · Capability

Browserbase API — Projects

Browserbase Projects capability covering project metadata, defaults, and usage metering. Self-contained Naftiko capability covering one Browserbase business surface.

Browserbase API — Projects is a Naftiko capability published by Browserbase, one of 4 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET method rooted at /v1/projects.

The capability includes 3 read-only operations. Lead operation: Browserbase List Projects. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Browserbase, Projects, and Usage.

Run with Naftiko BrowserbaseProjectsUsage

What You Can Do

GET
Listprojects — Browserbase List Projects
/v1/projects
GET
Getproject — Browserbase Get Project
/v1/projects/{id}
GET
Getprojectusage — Browserbase Get Project Usage
/v1/projects/{id}/usage

MCP Tools

browserbase-list-projects

Browserbase List Projects

read-only idempotent
browserbase-get-project

Browserbase Get Project

read-only idempotent
browserbase-get-project-usage

Browserbase Get Project Usage

read-only idempotent

Capability Spec

projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Browserbase API — Projects
  description: >-
    Browserbase Projects capability covering project metadata, defaults, and
    usage metering. Self-contained Naftiko capability covering one
    Browserbase business surface.
  tags:
    - Browserbase
    - Projects
    - Usage
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      BROWSERBASE_API_KEY: BROWSERBASE_API_KEY
capability:
  consumes:
    - type: http
      namespace: projects
      baseUri: https://api.browserbase.com/v1
      description: Browserbase Projects consumes block. Self-contained, no shared references.
      resources:
        - name: projects
          path: /projects
          operations:
            - name: listprojects
              method: GET
              description: Browserbase List Projects
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: array
                  value: $.
        - name: projects-id
          path: /projects/{id}
          operations:
            - name: getproject
              method: GET
              description: Browserbase Get Project
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: projects-id-usage
          path: /projects/{id}/usage
          operations:
            - name: getprojectusage
              method: GET
              description: Browserbase Get Project Usage
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
      authentication:
        type: apikey
        key: X-BB-API-Key
        value: '{{env.BROWSERBASE_API_KEY}}'
        placement: header
  exposes:
    - type: rest
      namespace: projects-rest
      port: 8080
      description: REST adapter for Browserbase Projects. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/projects
          name: projects
          description: REST surface for projects.
          operations:
            - method: GET
              name: listprojects
              description: Browserbase List Projects
              call: projects.listprojects
              outputParameters:
                - type: array
                  mapping: $.
        - path: /v1/projects/{id}
          name: projects-id
          description: REST surface for projects-id.
          operations:
            - method: GET
              name: getproject
              description: Browserbase Get Project
              call: projects.getproject
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/projects/{id}/usage
          name: projects-id-usage
          description: REST surface for projects-id-usage.
          operations:
            - method: GET
              name: getprojectusage
              description: Browserbase Get Project Usage
              call: projects.getprojectusage
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: projects-mcp
      port: 9090
      transport: http
      description: MCP adapter for Browserbase Projects. One tool per consumed operation.
      tools:
        - name: browserbase-list-projects
          description: Browserbase List Projects
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: projects.listprojects
          outputParameters:
            - type: array
              mapping: $.
        - name: browserbase-get-project
          description: Browserbase Get Project
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: projects.getproject
          outputParameters:
            - type: object
              mapping: $.
        - name: browserbase-get-project-usage
          description: Browserbase Get Project Usage
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: projects.getprojectusage
          outputParameters:
            - type: object
              mapping: $.