Miro · Capability

Miro Developer Platform — Project Settings

Miro Developer Platform — Project Settings. 2 operations. Lead operation: Get project settings. Self-contained Naftiko capability covering one Miro business surface.

Run with Naftiko MiroProject Settings

What You Can Do

GET
Enterprisegetprojectsettings — Get project settings
/v1/v2/orgs/{org-id}/teams/{team-id}/projects/{project-id}/settings
PATCH
Enterpriseupdateprojectsettings — Update project settings
/v1/v2/orgs/{org-id}/teams/{team-id}/projects/{project-id}/settings

MCP Tools

get-project-settings

Get project settings

read-only idempotent
update-project-settings

Update project settings

idempotent

Capability Spec

miro-project-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Miro Developer Platform — Project Settings
  description: 'Miro Developer Platform — Project Settings. 2 operations. Lead operation: Get project settings. Self-contained
    Naftiko capability covering one Miro business surface.'
  tags:
  - Miro
  - Project 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-project-settings
    baseUri: https://api.miro.com
    description: Miro Developer Platform — Project Settings business capability. Self-contained, no shared references.
    resources:
    - name: v2-orgs-org_id-teams-team_id-projects-project_id-settings
      path: /v2/orgs/{org_id}/teams/{team_id}/projects/{project_id}/settings
      operations:
      - name: enterprisegetprojectsettings
        method: GET
        description: Get project settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org_id
          in: path
          type: string
          description: The ID of the organization to which the project belongs.
          required: true
        - name: team_id
          in: path
          type: string
          description: The ID of the team to which the project belongs.
          required: true
        - name: project_id
          in: path
          type: string
          description: The ID of the project for which you want to retrieve the project settings.
          required: true
      - name: enterpriseupdateprojectsettings
        method: PATCH
        description: Update project settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org_id
          in: path
          type: string
          description: The ID of the organization to which the project belongs.
          required: true
        - name: team_id
          in: path
          type: string
          description: The ID of the team to which the project belongs.
          required: true
        - name: project_id
          in: path
          type: string
          description: The ID of the project whose settings 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-project-settings-rest
    port: 8080
    description: REST adapter for Miro Developer Platform — Project Settings. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v2/orgs/{org-id}/teams/{team-id}/projects/{project-id}/settings
      name: v2-orgs-org-id-teams-team-id-projects-project-id-settings
      description: REST surface for v2-orgs-org_id-teams-team_id-projects-project_id-settings.
      operations:
      - method: GET
        name: enterprisegetprojectsettings
        description: Get project settings
        call: miro-project-settings.enterprisegetprojectsettings
        with:
          org_id: rest.org_id
          team_id: rest.team_id
          project_id: rest.project_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: enterpriseupdateprojectsettings
        description: Update project settings
        call: miro-project-settings.enterpriseupdateprojectsettings
        with:
          org_id: rest.org_id
          team_id: rest.team_id
          project_id: rest.project_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: miro-project-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Miro Developer Platform — Project Settings. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-project-settings
      description: Get project settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: miro-project-settings.enterprisegetprojectsettings
      with:
        org_id: tools.org_id
        team_id: tools.team_id
        project_id: tools.project_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-project-settings
      description: Update project settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: miro-project-settings.enterpriseupdateprojectsettings
      with:
        org_id: tools.org_id
        team_id: tools.team_id
        project_id: tools.project_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.