OpenProject · Capability

OpenProject API V3 (Stable) — Configuration

OpenProject API V3 (Stable) — Configuration. 2 operations. Lead operation: View configuration. Self-contained Naftiko capability covering one Openproject business surface.

Run with Naftiko OpenprojectConfiguration

What You Can Do

GET
Viewconfiguration — View configuration
/v1/api/v3/configuration
GET
Viewprojectconfiguration — View project configuration
/v1/api/v3/projects/{id}/configuration

MCP Tools

view-configuration

View configuration

read-only idempotent
view-project-configuration

View project configuration

read-only idempotent

Capability Spec

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