Miro · Capability

Miro Developer Platform — App card items

Miro Developer Platform — App card items. 4 operations. Lead operation: Create app card item. Self-contained Naftiko capability covering one Miro business surface.

Run with Naftiko MiroApp card items

What You Can Do

POST
Createappcarditem — Create app card item
/v1/v2/boards/{board-id}/app-cards
GET
Getappcarditem — Get app card item
/v1/v2/boards/{board-id}/app-cards/{item-id}
PATCH
Updateappcarditem — Update app card item
/v1/v2/boards/{board-id}/app-cards/{item-id}
DELETE
Deleteappcarditem — Delete app card item
/v1/v2/boards/{board-id}/app-cards/{item-id}

MCP Tools

create-app-card-item

Create app card item

get-app-card-item

Get app card item

read-only idempotent
update-app-card-item

Update app card item

idempotent
delete-app-card-item

Delete app card item

idempotent

Capability Spec

miro-app-card-items.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Miro Developer Platform — App card items
  description: 'Miro Developer Platform — App card items. 4 operations. Lead operation: Create app card item. Self-contained
    Naftiko capability covering one Miro business surface.'
  tags:
  - Miro
  - App card items
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MIRO_API_KEY: MIRO_API_KEY
capability:
  consumes:
  - type: http
    namespace: miro-app-card-items
    baseUri: https://api.miro.com
    description: Miro Developer Platform — App card items business capability. Self-contained, no shared references.
    resources:
    - name: v2-boards-board_id-app_cards
      path: /v2/boards/{board_id}/app_cards
      operations:
      - name: createappcarditem
        method: POST
        description: Create app card item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: board_id
          in: path
          type: string
          description: Unique identifier (ID) of the board where you want to create the item.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v2-boards-board_id-app_cards-item_id
      path: /v2/boards/{board_id}/app_cards/{item_id}
      operations:
      - name: getappcarditem
        method: GET
        description: Get app card item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: board_id
          in: path
          type: string
          description: Unique identifier (ID) of the board from which you want to retrieve a specific item.
          required: true
        - name: item_id
          in: path
          type: string
          description: Unique identifier (ID) of the item that you want to retrieve.
          required: true
      - name: updateappcarditem
        method: PATCH
        description: Update app card item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: board_id
          in: path
          type: string
          description: Unique identifier (ID) of the board where you want to update the item.
          required: true
        - name: item_id
          in: path
          type: string
          description: Unique identifier (ID) of the item that you want to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteappcarditem
        method: DELETE
        description: Delete app card item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: board_id
          in: path
          type: string
          description: Unique identifier (ID) of the board from which you want to delete an item.
          required: true
        - name: item_id
          in: path
          type: string
          description: Unique identifier (ID) of the item that you want to delete.
          required: true
    authentication:
      type: bearer
      token: '{{env.MIRO_API_KEY}}'
  exposes:
  - type: rest
    namespace: miro-app-card-items-rest
    port: 8080
    description: REST adapter for Miro Developer Platform — App card items. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/boards/{board-id}/app-cards
      name: v2-boards-board-id-app-cards
      description: REST surface for v2-boards-board_id-app_cards.
      operations:
      - method: POST
        name: createappcarditem
        description: Create app card item
        call: miro-app-card-items.createappcarditem
        with:
          board_id: rest.board_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/boards/{board-id}/app-cards/{item-id}
      name: v2-boards-board-id-app-cards-item-id
      description: REST surface for v2-boards-board_id-app_cards-item_id.
      operations:
      - method: GET
        name: getappcarditem
        description: Get app card item
        call: miro-app-card-items.getappcarditem
        with:
          board_id: rest.board_id
          item_id: rest.item_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateappcarditem
        description: Update app card item
        call: miro-app-card-items.updateappcarditem
        with:
          board_id: rest.board_id
          item_id: rest.item_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteappcarditem
        description: Delete app card item
        call: miro-app-card-items.deleteappcarditem
        with:
          board_id: rest.board_id
          item_id: rest.item_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: miro-app-card-items-mcp
    port: 9090
    transport: http
    description: MCP adapter for Miro Developer Platform — App card items. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: create-app-card-item
      description: Create app card item
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: miro-app-card-items.createappcarditem
      with:
        board_id: tools.board_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-app-card-item
      description: Get app card item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-app-card-items.getappcarditem
      with:
        board_id: tools.board_id
        item_id: tools.item_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-app-card-item
      description: Update app card item
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: miro-app-card-items.updateappcarditem
      with:
        board_id: tools.board_id
        item_id: tools.item_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-app-card-item
      description: Delete app card item
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: miro-app-card-items.deleteappcarditem
      with:
        board_id: tools.board_id
        item_id: tools.item_id
      outputParameters:
      - type: object
        mapping: $.