Miro · Capability

Miro Developer Platform — items

Miro Developer Platform — items. 2 operations. Lead operation: Delete item. Self-contained Naftiko capability covering one Miro business surface.

Run with Naftiko Miroitems

What You Can Do

DELETE
Deleteitemexperimental — Delete item
/v1/v2-experimental/boards/{board-id}/items/{item-id}
GET
Getitemswithinframe — Get items within frame
/v1/v2/boards/{board-id-platformcontainers}/items

MCP Tools

delete-item

Delete item

idempotent
get-items-within-frame

Get items within frame

read-only idempotent

Capability Spec

miro-items-2.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Miro Developer Platform — items
  description: 'Miro Developer Platform — items. 2 operations. Lead operation: Delete item. Self-contained Naftiko capability
    covering one Miro business surface.'
  tags:
  - Miro
  - 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-items-2
    baseUri: https://api.miro.com
    description: Miro Developer Platform — items business capability. Self-contained, no shared references.
    resources:
    - name: v2-experimental-boards-board_id-items-item_id
      path: /v2-experimental/boards/{board_id}/items/{item_id}
      operations:
      - name: deleteitemexperimental
        method: DELETE
        description: Delete 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 the item.
          required: true
        - name: item_id
          in: path
          type: string
          description: Unique identifier (ID) of the item that you want to delete.
          required: true
    - name: v2-boards-board_id_PlatformContainers-items
      path: /v2/boards/{board_id_PlatformContainers}/items
      operations:
      - name: getitemswithinframe
        method: GET
        description: Get items within frame
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: board_id_PlatformContainers
          in: path
          type: string
          description: Unique identifier (ID) of the board that contains the frame for which you want to retrieve the list
            of available items.
          required: true
        - name: parent_item_id
          in: query
          type: string
          description: ID of the frame for which you want to retrieve the list of available items.
          required: true
        - name: limit
          in: query
          type: string
        - name: type
          in: query
          type: string
        - name: cursor
          in: query
          type: string
    authentication:
      type: bearer
      token: '{{env.MIRO_API_KEY}}'
  exposes:
  - type: rest
    namespace: miro-items-2-rest
    port: 8080
    description: REST adapter for Miro Developer Platform — items. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2-experimental/boards/{board-id}/items/{item-id}
      name: v2-experimental-boards-board-id-items-item-id
      description: REST surface for v2-experimental-boards-board_id-items-item_id.
      operations:
      - method: DELETE
        name: deleteitemexperimental
        description: Delete item
        call: miro-items-2.deleteitemexperimental
        with:
          board_id: rest.board_id
          item_id: rest.item_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/boards/{board-id-platformcontainers}/items
      name: v2-boards-board-id-platformcontainers-items
      description: REST surface for v2-boards-board_id_PlatformContainers-items.
      operations:
      - method: GET
        name: getitemswithinframe
        description: Get items within frame
        call: miro-items-2.getitemswithinframe
        with:
          board_id_PlatformContainers: rest.board_id_PlatformContainers
          parent_item_id: rest.parent_item_id
          limit: rest.limit
          type: rest.type
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: miro-items-2-mcp
    port: 9090
    transport: http
    description: MCP adapter for Miro Developer Platform — items. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: delete-item
      description: Delete item
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: miro-items-2.deleteitemexperimental
      with:
        board_id: tools.board_id
        item_id: tools.item_id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-items-within-frame
      description: Get items within frame
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-items-2.getitemswithinframe
      with:
        board_id_PlatformContainers: tools.board_id_PlatformContainers
        parent_item_id: tools.parent_item_id
        limit: tools.limit
        type: tools.type
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.