OpenProject · Capability

OpenProject API V3 (Stable) — Values::Property

OpenProject API V3 (Stable) — Values::Property. 2 operations. Lead operation: Get a notification detail. Self-contained Naftiko capability covering one Openproject business surface.

Run with Naftiko OpenprojectValues::Property

What You Can Do

GET
Viewnotificationdetail — Get a notification detail
/v1/api/v3/notifications/{notification-id}/details/{id}
GET
Viewvaluesschema — View Values schema
/v1/api/v3/values/schema/{id}

MCP Tools

get-notification-detail

Get a notification detail

read-only idempotent
view-values-schema

View Values schema

read-only idempotent

Capability Spec

openproject-values-property.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: OpenProject API V3 (Stable) — Values::Property
  description: 'OpenProject API V3 (Stable) — Values::Property. 2 operations. Lead operation: Get a notification detail. Self-contained
    Naftiko capability covering one Openproject business surface.'
  tags:
  - Openproject
  - Values::Property
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    OPENPROJECT_API_KEY: OPENPROJECT_API_KEY
capability:
  consumes:
  - type: http
    namespace: openproject-values-property
    baseUri: https://qa.openproject-edge.com
    description: OpenProject API V3 (Stable) — Values::Property business capability. Self-contained, no shared references.
    resources:
    - name: api-v3-notifications-notification_id-details-id
      path: /api/v3/notifications/{notification_id}/details/{id}
      operations:
      - name: viewnotificationdetail
        method: GET
        description: Get a notification detail
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: notification_id
          in: path
          type: integer
          description: notification id
          required: true
        - name: id
          in: path
          type: integer
          description: detail id
          required: true
    - name: api-v3-values-schema-id
      path: /api/v3/values/schema/{id}
      operations:
      - name: viewvaluesschema
        method: GET
        description: View Values schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The identifier of the value. This is typically the value of the `property` property of
          required: true
    authentication:
      type: basic
      username: '{{env.OPENPROJECT_USER}}'
      password: '{{env.OPENPROJECT_PASS}}'
  exposes:
  - type: rest
    namespace: openproject-values-property-rest
    port: 8080
    description: REST adapter for OpenProject API V3 (Stable) — Values::Property. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v3/notifications/{notification-id}/details/{id}
      name: api-v3-notifications-notification-id-details-id
      description: REST surface for api-v3-notifications-notification_id-details-id.
      operations:
      - method: GET
        name: viewnotificationdetail
        description: Get a notification detail
        call: openproject-values-property.viewnotificationdetail
        with:
          notification_id: rest.notification_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/values/schema/{id}
      name: api-v3-values-schema-id
      description: REST surface for api-v3-values-schema-id.
      operations:
      - method: GET
        name: viewvaluesschema
        description: View Values schema
        call: openproject-values-property.viewvaluesschema
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: openproject-values-property-mcp
    port: 9090
    transport: http
    description: MCP adapter for OpenProject API V3 (Stable) — Values::Property. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-notification-detail
      description: Get a notification detail
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: openproject-values-property.viewnotificationdetail
      with:
        notification_id: tools.notification_id
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: view-values-schema
      description: View Values schema
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: openproject-values-property.viewvaluesschema
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.