Red5 · Capability

Red5 Pro Server API — Applications

Red5 Pro Server API — Applications. 2 operations. Lead operation: List Applications. Self-contained Naftiko capability covering one Red5 business surface.

Run with Naftiko Red5Applications

What You Can Do

GET
Listapplications — List Applications
/v1/applications
GET
Getapplication — Get Application Details
/v1/applications/{appname}

MCP Tools

list-applications

List Applications

read-only idempotent
get-application-details

Get Application Details

read-only idempotent

Capability Spec

server-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Red5 Pro Server API — Applications
  description: 'Red5 Pro Server API — Applications. 2 operations. Lead operation: List Applications. Self-contained Naftiko
    capability covering one Red5 business surface.'
  tags:
  - Red5
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RED5_API_KEY: RED5_API_KEY
capability:
  consumes:
  - type: http
    namespace: server-applications
    baseUri: http://{host}:5080/api/v1
    description: Red5 Pro Server API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: applications
      path: /applications
      operations:
      - name: listapplications
        method: GET
        description: List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: applications-appName
      path: /applications/{appName}
      operations:
      - name: getapplication
        method: GET
        description: Get Application Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: accessToken
      value: '{{env.RED5_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: server-applications-rest
    port: 8080
    description: REST adapter for Red5 Pro Server API — Applications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/applications
      name: applications
      description: REST surface for applications.
      operations:
      - method: GET
        name: listapplications
        description: List Applications
        call: server-applications.listapplications
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{appname}
      name: applications-appname
      description: REST surface for applications-appName.
      operations:
      - method: GET
        name: getapplication
        description: Get Application Details
        call: server-applications.getapplication
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: server-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Red5 Pro Server API — Applications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-applications
      description: List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: server-applications.listapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: get-application-details
      description: Get Application Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: server-applications.getapplication
      outputParameters:
      - type: object
        mapping: $.