BigCommerce · Capability

BigCommerce Pages V3 — Pages (Single)

BigCommerce Pages V3 — Pages (Single). 3 operations. Lead operation: BigCommerce Get a Page. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommercePages (Single)

What You Can Do

GET
Getpage — BigCommerce Get a Page
/v1/content/pages/{pageid}
PUT
Updatepage — BigCommerce Update a Page
/v1/content/pages/{pageid}
DELETE
Deletepage — BigCommerce Delete a Page
/v1/content/pages/{pageid}

MCP Tools

bigcommerce-get-page

BigCommerce Get a Page

read-only idempotent
bigcommerce-update-page

BigCommerce Update a Page

idempotent
bigcommerce-delete-page

BigCommerce Delete a Page

idempotent

Capability Spec

pages-pages-single.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Pages V3 — Pages (Single)
  description: 'BigCommerce Pages V3 — Pages (Single). 3 operations. Lead operation: BigCommerce Get a Page. Self-contained
    Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Pages (Single)
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: pages-pages-single
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Pages V3 — Pages (Single) business capability. Self-contained, no shared references.
    resources:
    - name: content-pages-pageId
      path: /content/pages/{pageId}
      operations:
      - name: getpage
        method: GET
        description: BigCommerce Get a Page
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatepage
        method: PUT
        description: BigCommerce Update a Page
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletepage
        method: DELETE
        description: BigCommerce Delete a Page
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.BIGCOMMERCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: pages-pages-single-rest
    port: 8080
    description: REST adapter for BigCommerce Pages V3 — Pages (Single). One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/content/pages/{pageid}
      name: content-pages-pageid
      description: REST surface for content-pages-pageId.
      operations:
      - method: GET
        name: getpage
        description: BigCommerce Get a Page
        call: pages-pages-single.getpage
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatepage
        description: BigCommerce Update a Page
        call: pages-pages-single.updatepage
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletepage
        description: BigCommerce Delete a Page
        call: pages-pages-single.deletepage
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pages-pages-single-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Pages V3 — Pages (Single). One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: bigcommerce-get-page
      description: BigCommerce Get a Page
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pages-pages-single.getpage
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-page
      description: BigCommerce Update a Page
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: pages-pages-single.updatepage
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-page
      description: BigCommerce Delete a Page
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: pages-pages-single.deletepage
      outputParameters:
      - type: object
        mapping: $.