Bright Data · Capability

Bright Data Account Management

Manage Bright Data zones, IP allocations, access control, and billing/bandwidth reporting.

Bright Data Account Management is a Naftiko capability published by Bright Data, one of 11 capabilities the APIs.io network indexes for this provider. It bundles 4 operations.

The capability includes 3 read-only operations and 1 state-changing operation. Lead operation: Create a new Bright Data zone. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Bright Data, Account Management, Zones, and Billing.

Run with Naftiko Bright DataAccount ManagementZonesBilling

MCP Tools

bright-data-add-zone

Create a new Bright Data zone.

bright-data-get-zone

Get a Bright Data zone.

read-only idempotent
bright-data-get-balance

Get the current account balance.

read-only idempotent
bright-data-get-bandwidth

Get zone bandwidth usage.

read-only idempotent

Capability Spec

account-management.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Bright Data Account Management
  description: |
    Manage Bright Data zones, IP allocations, access control, and billing/bandwidth reporting.
  tags:
  - Bright Data
  - Account Management
  - Zones
  - Billing
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    BRIGHTDATA_API_TOKEN: BRIGHTDATA_API_TOKEN
capability:
  consumes:
  - type: http
    namespace: account-management
    baseUri: https://api.brightdata.com
    description: Bright Data Account Management API.
    resources:
    - name: zone
      path: /zone
      operations:
      - name: addZone
        method: POST
        description: Create a new zone.
        outputRawFormat: json
        outputParameters:
        - name: zone
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
      - name: getZone
        method: GET
        description: Get zone configuration.
        outputRawFormat: json
        outputParameters:
        - name: zone
          type: object
          value: $.
        inputParameters:
        - name: zone
          in: query
          type: string
          required: true
      - name: deleteZone
        method: DELETE
        description: Delete a zone.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: zone
          in: query
          type: string
          required: true
    - name: zone-ips
      path: /zone/ips
      operations:
      - name: listIps
        method: GET
        description: List IPs allocated to a zone.
        outputRawFormat: json
        outputParameters:
        - name: ips
          type: array
          value: $.
        inputParameters:
        - name: zone
          in: query
          type: string
          required: true
    - name: balance
      path: /customer/balance
      operations:
      - name: getBalance
        method: GET
        description: Get account balance.
        outputRawFormat: json
        outputParameters:
        - name: balance
          type: object
          value: $.
        inputParameters: []
    - name: zone-bandwidth
      path: /zone/bw
      operations:
      - name: getBandwidth
        method: GET
        description: Get zone bandwidth usage.
        outputRawFormat: json
        outputParameters:
        - name: usage
          type: object
          value: $.
        inputParameters:
        - name: zone
          in: query
          type: string
    authentication:
      type: apikey
      key: Authorization
      value: 'Bearer {{env.BRIGHTDATA_API_TOKEN}}'
      placement: header
  exposes:
  - type: mcp
    namespace: account-management-mcp
    port: 9090
    transport: http
    description: MCP adapter for Bright Data Account Management.
    tools:
    - name: bright-data-add-zone
      description: Create a new Bright Data zone.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: account-management.addZone
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bright-data-get-zone
      description: Get a Bright Data zone.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: account-management.getZone
      with:
        zone: tools.zone
      outputParameters:
      - type: object
        mapping: $.
    - name: bright-data-get-balance
      description: Get the current account balance.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: account-management.getBalance
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: bright-data-get-bandwidth
      description: Get zone bandwidth usage.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: account-management.getBandwidth
      with:
        zone: tools.zone
      outputParameters:
      - type: object
        mapping: $.