Miro · Capability

Miro Developer Platform — Team Settings

Miro Developer Platform — Team Settings. 3 operations. Lead operation: Get default team settings. Self-contained Naftiko capability covering one Miro business surface.

Run with Naftiko MiroTeam Settings

What You Can Do

GET
Enterprisegetdefaultteamsettings — Get default team settings
/v1/v2/orgs/{org-id}/default-teams-settings
GET
Enterprisegetteamsettings — Get team settings
/v1/v2/orgs/{org-id}/teams/{team-id}/settings
PATCH
Enterpriseupdateteamsettings — Update team settings
/v1/v2/orgs/{org-id}/teams/{team-id}/settings

MCP Tools

get-default-team-settings

Get default team settings

read-only idempotent
get-team-settings

Get team settings

read-only idempotent
update-team-settings

Update team settings

idempotent

Capability Spec

miro-team-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Miro Developer Platform — Team Settings
  description: 'Miro Developer Platform — Team Settings. 3 operations. Lead operation: Get default team settings. Self-contained
    Naftiko capability covering one Miro business surface.'
  tags:
  - Miro
  - Team Settings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MIRO_API_KEY: MIRO_API_KEY
capability:
  consumes:
  - type: http
    namespace: miro-team-settings
    baseUri: https://api.miro.com
    description: Miro Developer Platform — Team Settings business capability. Self-contained, no shared references.
    resources:
    - name: v2-orgs-org_id-default_teams_settings
      path: /v2/orgs/{org_id}/default_teams_settings
      operations:
      - name: enterprisegetdefaultteamsettings
        method: GET
        description: Get default team settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org_id
          in: path
          type: string
          description: The id of an Organization.
          required: true
    - name: v2-orgs-org_id-teams-team_id-settings
      path: /v2/orgs/{org_id}/teams/{team_id}/settings
      operations:
      - name: enterprisegetteamsettings
        method: GET
        description: Get team settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: enterpriseupdateteamsettings
        method: PATCH
        description: Update team settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - 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-team-settings-rest
    port: 8080
    description: REST adapter for Miro Developer Platform — Team Settings. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/orgs/{org-id}/default-teams-settings
      name: v2-orgs-org-id-default-teams-settings
      description: REST surface for v2-orgs-org_id-default_teams_settings.
      operations:
      - method: GET
        name: enterprisegetdefaultteamsettings
        description: Get default team settings
        call: miro-team-settings.enterprisegetdefaultteamsettings
        with:
          org_id: rest.org_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/orgs/{org-id}/teams/{team-id}/settings
      name: v2-orgs-org-id-teams-team-id-settings
      description: REST surface for v2-orgs-org_id-teams-team_id-settings.
      operations:
      - method: GET
        name: enterprisegetteamsettings
        description: Get team settings
        call: miro-team-settings.enterprisegetteamsettings
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: enterpriseupdateteamsettings
        description: Update team settings
        call: miro-team-settings.enterpriseupdateteamsettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: miro-team-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Miro Developer Platform — Team Settings. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-default-team-settings
      description: Get default team settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-team-settings.enterprisegetdefaultteamsettings
      with:
        org_id: tools.org_id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-team-settings
      description: Get team settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-team-settings.enterprisegetteamsettings
      outputParameters:
      - type: object
        mapping: $.
    - name: update-team-settings
      description: Update team settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: miro-team-settings.enterpriseupdateteamsettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.