Miro · Capability

Miro Developer Platform — Flowchart shapes (experimental)

Miro Developer Platform — Flowchart shapes (experimental). 6 operations. Lead operation: Get items on board. Self-contained Naftiko capability covering one Miro business surface.

Run with Naftiko MiroFlowchart shapes (experimental)

What You Can Do

GET
Getitemsexperimental — Get items on board
/v1/v2-experimental/boards/{board-id}/items
GET
Getspecificitemexperimental — Get specific item on board
/v1/v2-experimental/boards/{board-id}/items/{item-id}
POST
Createshapeitemflowchart — Create shape item
/v1/v2-experimental/boards/{board-id}/shapes
GET
Getshapeitemflowchart — Get shape item
/v1/v2-experimental/boards/{board-id}/shapes/{item-id}
PATCH
Updateshapeitemflowchart — Update shape item
/v1/v2-experimental/boards/{board-id}/shapes/{item-id}
DELETE
Deleteshapeitemflowchart — Delete shape item
/v1/v2-experimental/boards/{board-id}/shapes/{item-id}

MCP Tools

get-items-board

Get items on board

read-only idempotent
get-specific-item-board

Get specific item on board

read-only idempotent
create-shape-item

Create shape item

get-shape-item

Get shape item

read-only idempotent
update-shape-item

Update shape item

idempotent
delete-shape-item

Delete shape item

idempotent

Capability Spec

miro-flowchart-shapes-experimental.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Miro Developer Platform — Flowchart shapes (experimental)
  description: 'Miro Developer Platform — Flowchart shapes (experimental). 6 operations. Lead operation: Get items on board.
    Self-contained Naftiko capability covering one Miro business surface.'
  tags:
  - Miro
  - Flowchart shapes (experimental)
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MIRO_API_KEY: MIRO_API_KEY
capability:
  consumes:
  - type: http
    namespace: miro-flowchart-shapes-experimental
    baseUri: https://api.miro.com
    description: Miro Developer Platform — Flowchart shapes (experimental) business capability. Self-contained, no shared
      references.
    resources:
    - name: v2-experimental-boards-board_id-items
      path: /v2-experimental/boards/{board_id}/items
      operations:
      - name: getitemsexperimental
        method: GET
        description: Get items on board
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: string
        - name: type
          in: query
          type: string
        - name: cursor
          in: query
          type: string
        - name: board_id
          in: path
          type: string
          description: Unique identifier (ID) of the board for which you want to retrieve the list of available items.
          required: true
    - name: v2-experimental-boards-board_id-items-item_id
      path: /v2-experimental/boards/{board_id}/items/{item_id}
      operations:
      - name: getspecificitemexperimental
        method: GET
        description: Get specific item on board
        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: v2-experimental-boards-board_id-shapes
      path: /v2-experimental/boards/{board_id}/shapes
      operations:
      - name: createshapeitemflowchart
        method: POST
        description: Create shape 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-experimental-boards-board_id-shapes-item_id
      path: /v2-experimental/boards/{board_id}/shapes/{item_id}
      operations:
      - name: getshapeitemflowchart
        method: GET
        description: Get shape 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: updateshapeitemflowchart
        method: PATCH
        description: Update shape 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: deleteshapeitemflowchart
        method: DELETE
        description: Delete shape 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
    authentication:
      type: bearer
      token: '{{env.MIRO_API_KEY}}'
  exposes:
  - type: rest
    namespace: miro-flowchart-shapes-experimental-rest
    port: 8080
    description: REST adapter for Miro Developer Platform — Flowchart shapes (experimental). One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v2-experimental/boards/{board-id}/items
      name: v2-experimental-boards-board-id-items
      description: REST surface for v2-experimental-boards-board_id-items.
      operations:
      - method: GET
        name: getitemsexperimental
        description: Get items on board
        call: miro-flowchart-shapes-experimental.getitemsexperimental
        with:
          limit: rest.limit
          type: rest.type
          cursor: rest.cursor
          board_id: rest.board_id
        outputParameters:
        - type: object
          mapping: $.
    - 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: GET
        name: getspecificitemexperimental
        description: Get specific item on board
        call: miro-flowchart-shapes-experimental.getspecificitemexperimental
        with:
          board_id: rest.board_id
          item_id: rest.item_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2-experimental/boards/{board-id}/shapes
      name: v2-experimental-boards-board-id-shapes
      description: REST surface for v2-experimental-boards-board_id-shapes.
      operations:
      - method: POST
        name: createshapeitemflowchart
        description: Create shape item
        call: miro-flowchart-shapes-experimental.createshapeitemflowchart
        with:
          board_id: rest.board_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2-experimental/boards/{board-id}/shapes/{item-id}
      name: v2-experimental-boards-board-id-shapes-item-id
      description: REST surface for v2-experimental-boards-board_id-shapes-item_id.
      operations:
      - method: GET
        name: getshapeitemflowchart
        description: Get shape item
        call: miro-flowchart-shapes-experimental.getshapeitemflowchart
        with:
          board_id: rest.board_id
          item_id: rest.item_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateshapeitemflowchart
        description: Update shape item
        call: miro-flowchart-shapes-experimental.updateshapeitemflowchart
        with:
          board_id: rest.board_id
          item_id: rest.item_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteshapeitemflowchart
        description: Delete shape item
        call: miro-flowchart-shapes-experimental.deleteshapeitemflowchart
        with:
          board_id: rest.board_id
          item_id: rest.item_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: miro-flowchart-shapes-experimental-mcp
    port: 9090
    transport: http
    description: MCP adapter for Miro Developer Platform — Flowchart shapes (experimental). One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: get-items-board
      description: Get items on board
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-flowchart-shapes-experimental.getitemsexperimental
      with:
        limit: tools.limit
        type: tools.type
        cursor: tools.cursor
        board_id: tools.board_id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-specific-item-board
      description: Get specific item on board
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-flowchart-shapes-experimental.getspecificitemexperimental
      with:
        board_id: tools.board_id
        item_id: tools.item_id
      outputParameters:
      - type: object
        mapping: $.
    - name: create-shape-item
      description: Create shape item
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: miro-flowchart-shapes-experimental.createshapeitemflowchart
      with:
        board_id: tools.board_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-shape-item
      description: Get shape item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-flowchart-shapes-experimental.getshapeitemflowchart
      with:
        board_id: tools.board_id
        item_id: tools.item_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-shape-item
      description: Update shape item
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: miro-flowchart-shapes-experimental.updateshapeitemflowchart
      with:
        board_id: tools.board_id
        item_id: tools.item_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-shape-item
      description: Delete shape item
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: miro-flowchart-shapes-experimental.deleteshapeitemflowchart
      with:
        board_id: tools.board_id
        item_id: tools.item_id
      outputParameters:
      - type: object
        mapping: $.