instacart · Capability

Instacart Developer Platform API — Products

Instacart Developer Platform API — Products. 2 operations. Lead operation: Create a shopping list page. Self-contained Naftiko capability covering one Instacart business surface.

Run with Naftiko InstacartProducts

What You Can Do

POST
Createshoppinglistpage — Create a shopping list page
/v1/idp/v1/products/products-link
POST
Createrecipepage — Create a recipe page
/v1/idp/v1/products/recipe

MCP Tools

create-shopping-list-page

Create a shopping list page

read-only
create-recipe-page

Create a recipe page

Capability Spec

developer-platform-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Instacart Developer Platform API — Products
  description: 'Instacart Developer Platform API — Products. 2 operations. Lead operation: Create a shopping list page. Self-contained
    Naftiko capability covering one Instacart business surface.'
  tags:
  - Instacart
  - Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    INSTACART_API_KEY: INSTACART_API_KEY
capability:
  consumes:
  - type: http
    namespace: developer-platform-products
    baseUri: https://connect.instacart.com
    description: Instacart Developer Platform API — Products business capability. Self-contained, no shared references.
    resources:
    - name: idp-v1-products-products_link
      path: /idp/v1/products/products_link
      operations:
      - name: createshoppinglistpage
        method: POST
        description: Create a shopping list page
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: idp-v1-products-recipe
      path: /idp/v1/products/recipe
      operations:
      - name: createrecipepage
        method: POST
        description: Create a recipe page
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.INSTACART_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: developer-platform-products-rest
    port: 8080
    description: REST adapter for Instacart Developer Platform API — Products. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/idp/v1/products/products-link
      name: idp-v1-products-products-link
      description: REST surface for idp-v1-products-products_link.
      operations:
      - method: POST
        name: createshoppinglistpage
        description: Create a shopping list page
        call: developer-platform-products.createshoppinglistpage
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/idp/v1/products/recipe
      name: idp-v1-products-recipe
      description: REST surface for idp-v1-products-recipe.
      operations:
      - method: POST
        name: createrecipepage
        description: Create a recipe page
        call: developer-platform-products.createrecipepage
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: developer-platform-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for Instacart Developer Platform API — Products. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: create-shopping-list-page
      description: Create a shopping list page
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: developer-platform-products.createshoppinglistpage
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: create-recipe-page
      description: Create a recipe page
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-platform-products.createrecipepage
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.