OpenProject · Capability

OpenProject API V3 (Stable) — Meetings

OpenProject API V3 (Stable) — Meetings. 2 operations. Lead operation: List all visible meetings. Self-contained Naftiko capability covering one Openproject business surface.

Run with Naftiko OpenprojectMeetings

What You Can Do

GET
Listmeetings — List all visible meetings
/v1/api/v3/meetings
GET
Getmeeting — Get a meeting
/v1/api/v3/meetings/{id}

MCP Tools

list-all-visible-meetings

List all visible meetings

read-only idempotent
get-meeting

Get a meeting

read-only idempotent

Capability Spec

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