Microsoft Edge · Capability

Microsoft Edge Add-ons API — Products

Microsoft Edge Add-ons API — Products. 2 operations. Lead operation: Microsoft Edge List Products. Self-contained Naftiko capability covering one Microsoft Edge business surface.

Run with Naftiko Microsoft EdgeProducts

What You Can Do

GET
Listproducts — Microsoft Edge List Products
/v1/v1/products
GET
Getproduct — Microsoft Edge Get Product
/v1/v1/products/{productid}

MCP Tools

microsoft-edge-list-products

Microsoft Edge List Products

read-only idempotent
microsoft-edge-get-product

Microsoft Edge Get Product

read-only idempotent

Capability Spec

addons-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Edge Add-ons API — Products
  description: 'Microsoft Edge Add-ons API — Products. 2 operations. Lead operation: Microsoft Edge List Products. Self-contained
    Naftiko capability covering one Microsoft Edge business surface.'
  tags:
  - Microsoft Edge
  - Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_EDGE_API_KEY: MICROSOFT_EDGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: addons-products
    baseUri: https://api.addons.microsoftedge.microsoft.com
    description: Microsoft Edge Add-ons API — Products business capability. Self-contained, no shared references.
    resources:
    - name: v1-products
      path: /v1/products
      operations:
      - name: listproducts
        method: GET
        description: Microsoft Edge List Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: $top
          in: query
          type: integer
          description: Maximum number of products to return
        - name: $skip
          in: query
          type: integer
          description: Number of products to skip for pagination
    - name: v1-products-productId
      path: /v1/products/{productId}
      operations:
      - name: getproduct
        method: GET
        description: Microsoft Edge Get Product
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: productId
          in: path
          type: string
          description: Product identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_EDGE_API_KEY}}'
  exposes:
  - type: rest
    namespace: addons-products-rest
    port: 8080
    description: REST adapter for Microsoft Edge Add-ons API — Products. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/products
      name: v1-products
      description: REST surface for v1-products.
      operations:
      - method: GET
        name: listproducts
        description: Microsoft Edge List Products
        call: addons-products.listproducts
        with:
          $top: rest.$top
          $skip: rest.$skip
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/products/{productid}
      name: v1-products-productid
      description: REST surface for v1-products-productId.
      operations:
      - method: GET
        name: getproduct
        description: Microsoft Edge Get Product
        call: addons-products.getproduct
        with:
          productId: rest.productId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: addons-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Edge Add-ons API — Products. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: microsoft-edge-list-products
      description: Microsoft Edge List Products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: addons-products.listproducts
      with:
        $top: tools.$top
        $skip: tools.$skip
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-edge-get-product
      description: Microsoft Edge Get Product
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: addons-products.getproduct
      with:
        productId: tools.productId
      outputParameters:
      - type: object
        mapping: $.