ngrok · Capability

Ngrok API — Edges HTTPS

Ngrok API — Edges HTTPS. 5 operations. Lead operation: Ngrok Create HTTPS Edge. Self-contained Naftiko capability covering one Ngrok business surface.

Run with Naftiko NgrokEdges HTTPS

What You Can Do

POST
Createhttpsedge — Ngrok Create HTTPS Edge
/v1/edges/https
GET
Listhttpsedges — Ngrok List HTTPS Edges
/v1/edges/https
GET
Gethttpsedge — Ngrok Get HTTPS Edge
/v1/edges/https/{id}
PATCH
Updatehttpsedge — Ngrok Update HTTPS Edge
/v1/edges/https/{id}
DELETE
Deletehttpsedge — Ngrok Delete HTTPS Edge
/v1/edges/https/{id}

MCP Tools

ngrok-create-https-edge

Ngrok Create HTTPS Edge

ngrok-list-https-edges

Ngrok List HTTPS Edges

read-only idempotent
ngrok-get-https-edge

Ngrok Get HTTPS Edge

read-only idempotent
ngrok-update-https-edge

Ngrok Update HTTPS Edge

idempotent
ngrok-delete-https-edge

Ngrok Delete HTTPS Edge

idempotent

Capability Spec

ngrok-edges-https.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Ngrok API — Edges HTTPS
  description: 'Ngrok API — Edges HTTPS. 5 operations. Lead operation: Ngrok Create HTTPS Edge. Self-contained Naftiko capability
    covering one Ngrok business surface.'
  tags:
  - Ngrok
  - Edges HTTPS
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NGROK_API_KEY: NGROK_API_KEY
capability:
  consumes:
  - type: http
    namespace: ngrok-edges-https
    baseUri: https://api.ngrok.com
    description: Ngrok API — Edges HTTPS business capability. Self-contained, no shared references.
    resources:
    - name: edges-https
      path: /edges/https
      operations:
      - name: createhttpsedge
        method: POST
        description: Ngrok Create HTTPS Edge
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listhttpsedges
        method: GET
        description: Ngrok List HTTPS Edges
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: edges-https-id
      path: /edges/https/{id}
      operations:
      - name: gethttpsedge
        method: GET
        description: Ngrok Get HTTPS Edge
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatehttpsedge
        method: PATCH
        description: Ngrok Update HTTPS Edge
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletehttpsedge
        method: DELETE
        description: Ngrok Delete HTTPS Edge
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.NGROK_API_KEY}}'
  exposes:
  - type: rest
    namespace: ngrok-edges-https-rest
    port: 8080
    description: REST adapter for Ngrok API — Edges HTTPS. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/edges/https
      name: edges-https
      description: REST surface for edges-https.
      operations:
      - method: POST
        name: createhttpsedge
        description: Ngrok Create HTTPS Edge
        call: ngrok-edges-https.createhttpsedge
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listhttpsedges
        description: Ngrok List HTTPS Edges
        call: ngrok-edges-https.listhttpsedges
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/edges/https/{id}
      name: edges-https-id
      description: REST surface for edges-https-id.
      operations:
      - method: GET
        name: gethttpsedge
        description: Ngrok Get HTTPS Edge
        call: ngrok-edges-https.gethttpsedge
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatehttpsedge
        description: Ngrok Update HTTPS Edge
        call: ngrok-edges-https.updatehttpsedge
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletehttpsedge
        description: Ngrok Delete HTTPS Edge
        call: ngrok-edges-https.deletehttpsedge
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ngrok-edges-https-mcp
    port: 9090
    transport: http
    description: MCP adapter for Ngrok API — Edges HTTPS. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: ngrok-create-https-edge
      description: Ngrok Create HTTPS Edge
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: ngrok-edges-https.createhttpsedge
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: ngrok-list-https-edges
      description: Ngrok List HTTPS Edges
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ngrok-edges-https.listhttpsedges
      outputParameters:
      - type: object
        mapping: $.
    - name: ngrok-get-https-edge
      description: Ngrok Get HTTPS Edge
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ngrok-edges-https.gethttpsedge
      outputParameters:
      - type: object
        mapping: $.
    - name: ngrok-update-https-edge
      description: Ngrok Update HTTPS Edge
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: ngrok-edges-https.updatehttpsedge
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: ngrok-delete-https-edge
      description: Ngrok Delete HTTPS Edge
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: ngrok-edges-https.deletehttpsedge
      outputParameters:
      - type: object
        mapping: $.