BigPanda · Capability

BigPanda API — Environments

BigPanda API — Environments. 4 operations. Lead operation: BigPanda List Environments. Self-contained Naftiko capability covering one Bigpanda business surface.

Run with Naftiko BigpandaEnvironments

What You Can Do

GET
Listenvironments — BigPanda List Environments
/v1/resources/v2-0/environments
POST
Createenvironment — BigPanda Create Environment
/v1/resources/v2-0/environments
GET
Getenvironment — BigPanda Get Environment
/v1/resources/v2-0/environments/{id}
DELETE
Deleteenvironment — BigPanda Delete Environment
/v1/resources/v2-0/environments/{id}

MCP Tools

bigpanda-list-environments

BigPanda List Environments

read-only idempotent
bigpanda-create-environment

BigPanda Create Environment

bigpanda-get-environment

BigPanda Get Environment

read-only idempotent
bigpanda-delete-environment

BigPanda Delete Environment

idempotent

Capability Spec

bigpanda-environments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigPanda API — Environments
  description: 'BigPanda API — Environments. 4 operations. Lead operation: BigPanda List Environments. Self-contained Naftiko
    capability covering one Bigpanda business surface.'
  tags:
  - Bigpanda
  - Environments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGPANDA_API_KEY: BIGPANDA_API_KEY
capability:
  consumes:
  - type: http
    namespace: bigpanda-environments
    baseUri: https://api.bigpanda.io
    description: BigPanda API — Environments business capability. Self-contained, no shared references.
    resources:
    - name: resources-v2.0-environments
      path: /resources/v2.0/environments
      operations:
      - name: listenvironments
        method: GET
        description: BigPanda List Environments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createenvironment
        method: POST
        description: BigPanda Create Environment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: resources-v2.0-environments-id
      path: /resources/v2.0/environments/{id}
      operations:
      - name: getenvironment
        method: GET
        description: BigPanda Get Environment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: deleteenvironment
        method: DELETE
        description: BigPanda Delete Environment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.BIGPANDA_API_KEY}}'
  exposes:
  - type: rest
    namespace: bigpanda-environments-rest
    port: 8080
    description: REST adapter for BigPanda API — Environments. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/resources/v2-0/environments
      name: resources-v2-0-environments
      description: REST surface for resources-v2.0-environments.
      operations:
      - method: GET
        name: listenvironments
        description: BigPanda List Environments
        call: bigpanda-environments.listenvironments
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createenvironment
        description: BigPanda Create Environment
        call: bigpanda-environments.createenvironment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/resources/v2-0/environments/{id}
      name: resources-v2-0-environments-id
      description: REST surface for resources-v2.0-environments-id.
      operations:
      - method: GET
        name: getenvironment
        description: BigPanda Get Environment
        call: bigpanda-environments.getenvironment
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteenvironment
        description: BigPanda Delete Environment
        call: bigpanda-environments.deleteenvironment
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bigpanda-environments-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigPanda API — Environments. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: bigpanda-list-environments
      description: BigPanda List Environments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bigpanda-environments.listenvironments
      outputParameters:
      - type: object
        mapping: $.
    - name: bigpanda-create-environment
      description: BigPanda Create Environment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bigpanda-environments.createenvironment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigpanda-get-environment
      description: BigPanda Get Environment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bigpanda-environments.getenvironment
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: bigpanda-delete-environment
      description: BigPanda Delete Environment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: bigpanda-environments.deleteenvironment
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.