NGINX · Capability

NGINX Plus REST API — Processes

NGINX Plus REST API — Processes. 2 operations. Lead operation: NGINX Return NGINX Processes Status. Self-contained Naftiko capability covering one Nginx business surface.

Run with Naftiko NginxProcesses

What You Can Do

GET
Getprocesses — NGINX Return NGINX Processes Status
/v1/processes
DELETE
Deleteprocesses — NGINX Reset NGINX Processes Statistics
/v1/processes

MCP Tools

nginx-return-nginx-processes-status

NGINX Return NGINX Processes Status

read-only idempotent
nginx-reset-nginx-processes-statistics

NGINX Reset NGINX Processes Statistics

idempotent

Capability Spec

plus-http-processes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: NGINX Plus REST API — Processes
  description: 'NGINX Plus REST API — Processes. 2 operations. Lead operation: NGINX Return NGINX Processes Status. Self-contained
    Naftiko capability covering one Nginx business surface.'
  tags:
  - Nginx
  - Processes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NGINX_API_KEY: NGINX_API_KEY
capability:
  consumes:
  - type: http
    namespace: plus-http-processes
    baseUri: ''
    description: NGINX Plus REST API — Processes business capability. Self-contained, no shared references.
    resources:
    - name: processes
      path: /processes
      operations:
      - name: getprocesses
        method: GET
        description: NGINX Return NGINX Processes Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteprocesses
        method: DELETE
        description: NGINX Reset NGINX Processes Statistics
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: plus-http-processes-rest
    port: 8080
    description: REST adapter for NGINX Plus REST API — Processes. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/processes
      name: processes
      description: REST surface for processes.
      operations:
      - method: GET
        name: getprocesses
        description: NGINX Return NGINX Processes Status
        call: plus-http-processes.getprocesses
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteprocesses
        description: NGINX Reset NGINX Processes Statistics
        call: plus-http-processes.deleteprocesses
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: plus-http-processes-mcp
    port: 9090
    transport: http
    description: MCP adapter for NGINX Plus REST API — Processes. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: nginx-return-nginx-processes-status
      description: NGINX Return NGINX Processes Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: plus-http-processes.getprocesses
      outputParameters:
      - type: object
        mapping: $.
    - name: nginx-reset-nginx-processes-statistics
      description: NGINX Reset NGINX Processes Statistics
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: plus-http-processes.deleteprocesses
      outputParameters:
      - type: object
        mapping: $.