JetBrains · Capability

JetBrains YouTrack REST API — Agile Boards

JetBrains YouTrack REST API — Agile Boards. 2 operations. Lead operation: JetBrains List Agile Boards. Self-contained Naftiko capability covering one Jetbrains business surface.

Run with Naftiko JetbrainsAgile Boards

What You Can Do

GET
Listagileboards — JetBrains List Agile Boards
/v1/agiles
GET
Getagileboard — JetBrains Get Agile Board
/v1/agiles/{agileid}

MCP Tools

jetbrains-list-agile-boards

JetBrains List Agile Boards

read-only idempotent
jetbrains-get-agile-board

JetBrains Get Agile Board

read-only idempotent

Capability Spec

youtrack-agile-boards.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: JetBrains YouTrack REST API — Agile Boards
  description: 'JetBrains YouTrack REST API — Agile Boards. 2 operations. Lead operation: JetBrains List Agile Boards. Self-contained
    Naftiko capability covering one Jetbrains business surface.'
  tags:
  - Jetbrains
  - Agile Boards
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    JETBRAINS_API_KEY: JETBRAINS_API_KEY
capability:
  consumes:
  - type: http
    namespace: youtrack-agile-boards
    baseUri: https://{instance}.youtrack.cloud/api
    description: JetBrains YouTrack REST API — Agile Boards business capability. Self-contained, no shared references.
    resources:
    - name: agiles
      path: /agiles
      operations:
      - name: listagileboards
        method: GET
        description: JetBrains List Agile Boards
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: agiles-agileId
      path: /agiles/{agileId}
      operations:
      - name: getagileboard
        method: GET
        description: JetBrains Get Agile Board
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: agileId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.JETBRAINS_API_KEY}}'
  exposes:
  - type: rest
    namespace: youtrack-agile-boards-rest
    port: 8080
    description: REST adapter for JetBrains YouTrack REST API — Agile Boards. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/agiles
      name: agiles
      description: REST surface for agiles.
      operations:
      - method: GET
        name: listagileboards
        description: JetBrains List Agile Boards
        call: youtrack-agile-boards.listagileboards
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/agiles/{agileid}
      name: agiles-agileid
      description: REST surface for agiles-agileId.
      operations:
      - method: GET
        name: getagileboard
        description: JetBrains Get Agile Board
        call: youtrack-agile-boards.getagileboard
        with:
          agileId: rest.agileId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: youtrack-agile-boards-mcp
    port: 9090
    transport: http
    description: MCP adapter for JetBrains YouTrack REST API — Agile Boards. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: jetbrains-list-agile-boards
      description: JetBrains List Agile Boards
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: youtrack-agile-boards.listagileboards
      outputParameters:
      - type: object
        mapping: $.
    - name: jetbrains-get-agile-board
      description: JetBrains Get Agile Board
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: youtrack-agile-boards.getagileboard
      with:
        agileId: tools.agileId
      outputParameters:
      - type: object
        mapping: $.