Miro · Capability

Miro Developer Platform — Board classification: Board level

Miro Developer Platform — Board classification: Board level. 2 operations. Lead operation: Get board classification. Self-contained Naftiko capability covering one Miro business surface.

Run with Naftiko MiroBoard classification: Board level

What You Can Do

GET
Enterprisedataclassificationboardget — Get board classification
/v1/v2/orgs/{org-id}/teams/{team-id}/boards/{board-id}/data-classification
POST
Enterprisedataclassificationboardset — Update board classification
/v1/v2/orgs/{org-id}/teams/{team-id}/boards/{board-id}/data-classification

MCP Tools

get-board-classification

Get board classification

read-only idempotent
update-board-classification

Update board classification

Capability Spec

miro-board-classification-board-level.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: 'Miro Developer Platform — Board classification: Board level'
  description: 'Miro Developer Platform — Board classification: Board level. 2 operations. Lead operation: Get board classification.
    Self-contained Naftiko capability covering one Miro business surface.'
  tags:
  - Miro
  - 'Board classification: Board level'
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MIRO_API_KEY: MIRO_API_KEY
capability:
  consumes:
  - type: http
    namespace: miro-board-classification-board-level
    baseUri: https://api.miro.com
    description: 'Miro Developer Platform — Board classification: Board level business capability. Self-contained, no shared
      references.'
    resources:
    - name: v2-orgs-org_id-teams-team_id-boards-board_id-data-classification
      path: /v2/orgs/{org_id}/teams/{team_id}/boards/{board_id}/data-classification
      operations:
      - name: enterprisedataclassificationboardget
        method: GET
        description: Get board classification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org_id
          in: path
          type: string
          description: id of the organization
          required: true
        - name: team_id
          in: path
          type: string
          description: id of the team
          required: true
        - name: board_id
          in: path
          type: string
          description: Unique identifier of the board that you want to retrieve.
          required: true
      - name: enterprisedataclassificationboardset
        method: POST
        description: Update board classification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org_id
          in: path
          type: string
          description: id of the organization
          required: true
        - name: team_id
          in: path
          type: string
          description: id of the team
          required: true
        - name: board_id
          in: path
          type: string
          description: Unique identifier of the board that you want to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.MIRO_API_KEY}}'
  exposes:
  - type: rest
    namespace: miro-board-classification-board-level-rest
    port: 8080
    description: 'REST adapter for Miro Developer Platform — Board classification: Board level. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.'
    resources:
    - path: /v1/v2/orgs/{org-id}/teams/{team-id}/boards/{board-id}/data-classification
      name: v2-orgs-org-id-teams-team-id-boards-board-id-data-classification
      description: REST surface for v2-orgs-org_id-teams-team_id-boards-board_id-data-classification.
      operations:
      - method: GET
        name: enterprisedataclassificationboardget
        description: Get board classification
        call: miro-board-classification-board-level.enterprisedataclassificationboardget
        with:
          org_id: rest.org_id
          team_id: rest.team_id
          board_id: rest.board_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: enterprisedataclassificationboardset
        description: Update board classification
        call: miro-board-classification-board-level.enterprisedataclassificationboardset
        with:
          org_id: rest.org_id
          team_id: rest.team_id
          board_id: rest.board_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: miro-board-classification-board-level-mcp
    port: 9090
    transport: http
    description: 'MCP adapter for Miro Developer Platform — Board classification: Board level. One tool per consumed operation,
      routed inline through this capability''s consumes block.'
    tools:
    - name: get-board-classification
      description: Get board classification
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-board-classification-board-level.enterprisedataclassificationboardget
      with:
        org_id: tools.org_id
        team_id: tools.team_id
        board_id: tools.board_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-board-classification
      description: Update board classification
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: miro-board-classification-board-level.enterprisedataclassificationboardset
      with:
        org_id: tools.org_id
        team_id: tools.team_id
        board_id: tools.board_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.