Miro · Capability

Miro Developer Platform — frames

Miro Developer Platform — frames. 4 operations. Lead operation: Create frame. Self-contained Naftiko capability covering one Miro business surface.

Run with Naftiko Miroframes

What You Can Do

POST
Createframeitem — Create frame
/v1/v2/boards/{board-id}/frames
GET
Getframeitem — Get frame
/v1/v2/boards/{board-id}/frames/{item-id}
PATCH
Updateframeitem — Update frame
/v1/v2/boards/{board-id}/frames/{item-id}
DELETE
Deleteframeitem — Delete frame
/v1/v2/boards/{board-id}/frames/{item-id}

MCP Tools

create-frame

Create frame

get-frame

Get frame

read-only idempotent
update-frame

Update frame

idempotent
delete-frame

Delete frame

idempotent

Capability Spec

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