doordash · Capability

DoorDash Item Management API — Catalog

DoorDash Item Management API — Catalog. 2 operations. Lead operation: Add items to catalog. Self-contained Naftiko capability covering one Doordash business surface.

Run with Naftiko DoordashCatalog

What You Can Do

POST
Createitems — Add items to catalog
/v1/items
PATCH
Updateitems — Update items in catalog
/v1/items

MCP Tools

add-items-catalog

Add items to catalog

update-items-catalog

Update items in catalog

idempotent

Capability Spec

item-management-catalog.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: DoorDash Item Management API — Catalog
  description: 'DoorDash Item Management API — Catalog. 2 operations. Lead operation: Add items to catalog. Self-contained
    Naftiko capability covering one Doordash business surface.'
  tags:
  - Doordash
  - Catalog
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DOORDASH_API_KEY: DOORDASH_API_KEY
capability:
  consumes:
  - type: http
    namespace: item-management-catalog
    baseUri: https://openapi.doordash.com/marketplace/api/v2
    description: DoorDash Item Management API — Catalog business capability. Self-contained, no shared references.
    resources:
    - name: items
      path: /items
      operations:
      - name: createitems
        method: POST
        description: Add items to catalog
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updateitems
        method: PATCH
        description: Update items in catalog
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.DOORDASH_API_KEY}}'
  exposes:
  - type: rest
    namespace: item-management-catalog-rest
    port: 8080
    description: REST adapter for DoorDash Item Management API — Catalog. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/items
      name: items
      description: REST surface for items.
      operations:
      - method: POST
        name: createitems
        description: Add items to catalog
        call: item-management-catalog.createitems
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateitems
        description: Update items in catalog
        call: item-management-catalog.updateitems
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: item-management-catalog-mcp
    port: 9090
    transport: http
    description: MCP adapter for DoorDash Item Management API — Catalog. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: add-items-catalog
      description: Add items to catalog
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: item-management-catalog.createitems
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-items-catalog
      description: Update items in catalog
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: item-management-catalog.updateitems
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.