Dokploy · Capability

Dokploy API — security

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

Dokploy API — security 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: security-create. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Dokploy and security.

Run with Naftiko Dokploysecurity

What You Can Do

POST
Security create — security-create
/v1/security.create
GET
Security one — security-one
/v1/security.one
POST
Security delete — security-delete
/v1/security.delete
POST
Security update — security-update
/v1/security.update

MCP Tools

security-create

security-create

security-one

security-one

read-only idempotent
security-delete

security-delete

security-update

security-update

Capability Spec

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