Dokploy · Capability

Dokploy API — port

Dokploy API — port. 4 operations. Lead operation: port.create. Self-contained Naftiko capability covering one Dokploy business surface.

Dokploy API — port is a Naftiko capability published by Dokploy, one of 48 capabilities the APIs.io network indexes for this provider. It bundles 4 operations across the POST and GET methods.

The capability includes 1 read-only operation and 3 state-changing operations. Lead operation: port-create. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Dokploy and port.

Run with Naftiko Dokployport

What You Can Do

POST
Port create — port-create
/v1/port.create
GET
Port one — port-one
/v1/port.one
POST
Port delete — port-delete
/v1/port.delete
POST
Port update — port-update
/v1/port.update

MCP Tools

port-create

port-create

port-one

port-one

read-only idempotent
port-delete

port-delete

port-update

port-update

Capability Spec

dokploy-port.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Dokploy API — port
  description: 'Dokploy API — port. 4 operations. Lead operation: port.create. Self-contained Naftiko capability covering one Dokploy business
    surface.'
  tags:
  - Dokploy
  - port
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    DOKPLOY_API_KEY: DOKPLOY_API_KEY
    DOKPLOY_URL: DOKPLOY_URL
capability:
  consumes:
  - type: http
    namespace: dokploy-port
    baseUri: ${DOKPLOY_URL}/api
    description: Dokploy API — port business capability. Self-contained, no shared references.
    resources:
    - name: create
      path: /port.create
      operations:
      - name: port-create
        method: POST
        description: port-create
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body
          required: true
    - name: one
      path: /port.one
      operations:
      - name: port-one
        method: GET
        description: port-one
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: delete
      path: /port.delete
      operations:
      - name: port-delete
        method: POST
        description: port-delete
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body
          required: true
    - name: update
      path: /port.update
      operations:
      - name: port-update
        method: POST
        description: port-update
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body
          required: true
  exposes:
  - type: rest
    namespace: dokploy-port-rest
    port: 8080
    description: REST adapter for Dokploy API — port. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/port.create
      name: create
      description: REST surface for create.
      operations:
      - method: POST
        name: port-create
        description: port-create
        call: dokploy-port.port-create
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/port.one
      name: one
      description: REST surface for one.
      operations:
      - method: GET
        name: port-one
        description: port-one
        call: dokploy-port.port-one
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/port.delete
      name: delete
      description: REST surface for delete.
      operations:
      - method: POST
        name: port-delete
        description: port-delete
        call: dokploy-port.port-delete
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/port.update
      name: update
      description: REST surface for update.
      operations:
      - method: POST
        name: port-update
        description: port-update
        call: dokploy-port.port-update
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: dokploy-port-mcp
    port: 9090
    transport: http
    description: MCP adapter for Dokploy API — port. One tool per consumed operation, routed inline through this capability’s consumes block.
    tools:
    - name: port-create
      description: port-create
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: dokploy-port.port-create
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: port-one
      description: port-one
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dokploy-port.port-one
      outputParameters:
      - type: object
        mapping: $.
    - name: port-delete
      description: port-delete
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: dokploy-port.port-delete
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: port-update
      description: port-update
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: dokploy-port.port-update
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.