Apache OpenMeetings · Capability

Apache OpenMeetings REST API — NetTestService

Apache OpenMeetings REST API — NetTestService. 2 operations. Lead operation: Apache OpenMeetings Get_2. Self-contained Naftiko capability covering one Apache Openmeetings business surface.

Run with Naftiko Apache OpenmeetingsNetTestService

What You Can Do

GET
Get2 — Apache OpenMeetings Get_2
/v1/networktest
POST
Upload — Apache OpenMeetings Upload
/v1/networktest

MCP Tools

apache-openmeetings-get-2

Apache OpenMeetings Get_2

read-only idempotent
apache-openmeetings-upload

Apache OpenMeetings Upload

Capability Spec

rest-nettestservice.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache OpenMeetings REST API — NetTestService
  description: 'Apache OpenMeetings REST API — NetTestService. 2 operations. Lead operation: Apache OpenMeetings Get_2. Self-contained
    Naftiko capability covering one Apache Openmeetings business surface.'
  tags:
  - Apache Openmeetings
  - NetTestService
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_OPENMEETINGS_API_KEY: APACHE_OPENMEETINGS_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-nettestservice
    baseUri: https://{host}:5443/openmeetings/services
    description: Apache OpenMeetings REST API — NetTestService business capability. Self-contained, no shared references.
    resources:
    - name: networktest
      path: /networktest
      operations:
      - name: get2
        method: GET
        description: Apache OpenMeetings Get_2
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: query
          type: string
          description: one of ping, jitter, download, upload
          required: true
        - name: size
          in: query
          type: integer
          description: requests size of sample
          required: true
      - name: upload
        method: POST
        description: Apache OpenMeetings Upload
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: size
          in: query
          type: integer
          description: size
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: rest-nettestservice-rest
    port: 8080
    description: REST adapter for Apache OpenMeetings REST API — NetTestService. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/networktest
      name: networktest
      description: REST surface for networktest.
      operations:
      - method: GET
        name: get2
        description: Apache OpenMeetings Get_2
        call: rest-nettestservice.get2
        with:
          type: rest.type
          size: rest.size
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: upload
        description: Apache OpenMeetings Upload
        call: rest-nettestservice.upload
        with:
          size: rest.size
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-nettestservice-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache OpenMeetings REST API — NetTestService. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: apache-openmeetings-get-2
      description: Apache OpenMeetings Get_2
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-nettestservice.get2
      with:
        type: tools.type
        size: tools.size
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-openmeetings-upload
      description: Apache OpenMeetings Upload
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-nettestservice.upload
      with:
        size: tools.size
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.