Uber · Capability

Uber Eats API — Menus

Uber Eats API — Menus. 2 operations. Lead operation: Get Store Menu. Self-contained Naftiko capability covering one Uber business surface.

Run with Naftiko UberMenus

What You Can Do

GET
Getstoremenu — Get Store Menu
/v1/eats/stores/{store-id}/menus
PUT
Updatestoremenu — Update Store Menu
/v1/eats/stores/{store-id}/menus

MCP Tools

get-store-menu

Get Store Menu

read-only idempotent
update-store-menu

Update Store Menu

idempotent

Capability Spec

eats-menus.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Uber Eats API — Menus
  description: 'Uber Eats API — Menus. 2 operations. Lead operation: Get Store Menu. Self-contained Naftiko capability covering
    one Uber business surface.'
  tags:
  - Uber
  - Menus
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UBER_API_KEY: UBER_API_KEY
capability:
  consumes:
  - type: http
    namespace: eats-menus
    baseUri: https://api.uber.com/v1
    description: Uber Eats API — Menus business capability. Self-contained, no shared references.
    resources:
    - name: eats-stores-store_id-menus
      path: /eats/stores/{store_id}/menus
      operations:
      - name: getstoremenu
        method: GET
        description: Get Store Menu
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: store_id
          in: path
          type: string
          description: Unique identifier for the store.
          required: true
      - name: updatestoremenu
        method: PUT
        description: Update Store Menu
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: store_id
          in: path
          type: string
          description: Unique identifier for the store.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.UBER_API_KEY}}'
  exposes:
  - type: rest
    namespace: eats-menus-rest
    port: 8080
    description: REST adapter for Uber Eats API — Menus. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/eats/stores/{store-id}/menus
      name: eats-stores-store-id-menus
      description: REST surface for eats-stores-store_id-menus.
      operations:
      - method: GET
        name: getstoremenu
        description: Get Store Menu
        call: eats-menus.getstoremenu
        with:
          store_id: rest.store_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatestoremenu
        description: Update Store Menu
        call: eats-menus.updatestoremenu
        with:
          store_id: rest.store_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: eats-menus-mcp
    port: 9090
    transport: http
    description: MCP adapter for Uber Eats API — Menus. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-store-menu
      description: Get Store Menu
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: eats-menus.getstoremenu
      with:
        store_id: tools.store_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-store-menu
      description: Update Store Menu
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: eats-menus.updatestoremenu
      with:
        store_id: tools.store_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.