OpenProject · Capability

OpenProject API V3 (Stable) — Statuses

OpenProject API V3 (Stable) — Statuses. 2 operations. Lead operation: List the collection of all statuses. Self-contained Naftiko capability covering one Openproject business surface.

Run with Naftiko OpenprojectStatuses

What You Can Do

GET
Liststatuses — List the collection of all statuses
/v1/api/v3/statuses
GET
Getstatus — Get a work package status
/v1/api/v3/statuses/{id}

MCP Tools

list-collection-all-statuses

List the collection of all statuses

read-only idempotent
get-work-package-status

Get a work package status

read-only idempotent

Capability Spec

openproject-statuses.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: OpenProject API V3 (Stable) — Statuses
  description: 'OpenProject API V3 (Stable) — Statuses. 2 operations. Lead operation: List the collection of all statuses.
    Self-contained Naftiko capability covering one Openproject business surface.'
  tags:
  - Openproject
  - Statuses
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    OPENPROJECT_API_KEY: OPENPROJECT_API_KEY
capability:
  consumes:
  - type: http
    namespace: openproject-statuses
    baseUri: https://qa.openproject-edge.com
    description: OpenProject API V3 (Stable) — Statuses business capability. Self-contained, no shared references.
    resources:
    - name: api-v3-statuses
      path: /api/v3/statuses
      operations:
      - name: liststatuses
        method: GET
        description: List the collection of all statuses
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v3-statuses-id
      path: /api/v3/statuses/{id}
      operations:
      - name: getstatus
        method: GET
        description: Get a work package status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: Status id
          required: true
    authentication:
      type: basic
      username: '{{env.OPENPROJECT_USER}}'
      password: '{{env.OPENPROJECT_PASS}}'
  exposes:
  - type: rest
    namespace: openproject-statuses-rest
    port: 8080
    description: REST adapter for OpenProject API V3 (Stable) — Statuses. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v3/statuses
      name: api-v3-statuses
      description: REST surface for api-v3-statuses.
      operations:
      - method: GET
        name: liststatuses
        description: List the collection of all statuses
        call: openproject-statuses.liststatuses
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/statuses/{id}
      name: api-v3-statuses-id
      description: REST surface for api-v3-statuses-id.
      operations:
      - method: GET
        name: getstatus
        description: Get a work package status
        call: openproject-statuses.getstatus
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: openproject-statuses-mcp
    port: 9090
    transport: http
    description: MCP adapter for OpenProject API V3 (Stable) — Statuses. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-collection-all-statuses
      description: List the collection of all statuses
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: openproject-statuses.liststatuses
      outputParameters:
      - type: object
        mapping: $.
    - name: get-work-package-status
      description: Get a work package status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: openproject-statuses.getstatus
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.