Acronis · Capability

Acronis Agent Management REST API — Agent Updates

Acronis Agent Management REST API — Agent Updates. 3 operations. Lead operation: Acronis Get Agent Update Settings. Self-contained Naftiko capability covering one Acronis business surface.

Run with Naftiko AcronisAgent Updates

What You Can Do

GET
Getagentupdatesettings — Acronis Get Agent Update Settings
/v1/agent-update-settings
PUT
Updateagentupdatesettings — Acronis Update Agent Update Settings
/v1/agent-update-settings
POST
Forceagentupdate — Acronis Force Agent Update
/v1/agents/update-force

MCP Tools

acronis-get-agent-update-settings

Acronis Get Agent Update Settings

read-only idempotent
acronis-update-agent-update-settings

Acronis Update Agent Update Settings

idempotent
acronis-force-agent-update

Acronis Force Agent Update

Capability Spec

agent-management-agent-updates.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Acronis Agent Management REST API — Agent Updates
  description: 'Acronis Agent Management REST API — Agent Updates. 3 operations. Lead operation: Acronis Get Agent Update
    Settings. Self-contained Naftiko capability covering one Acronis business surface.'
  tags:
  - Acronis
  - Agent Updates
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ACRONIS_API_KEY: ACRONIS_API_KEY
capability:
  consumes:
  - type: http
    namespace: agent-management-agent-updates
    baseUri: https://{datacenter}.acronis.com/api/agent_manager/v2
    description: Acronis Agent Management REST API — Agent Updates business capability. Self-contained, no shared references.
    resources:
    - name: agent_update_settings
      path: /agent_update_settings
      operations:
      - name: getagentupdatesettings
        method: GET
        description: Acronis Get Agent Update Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tenant_id
          in: query
          type: string
          description: Tenant UUID to scope settings
      - name: updateagentupdatesettings
        method: PUT
        description: Acronis Update Agent Update Settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: agents-update:force
      path: /agents/update:force
      operations:
      - name: forceagentupdate
        method: POST
        description: Acronis Force Agent Update
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ACRONIS_API_KEY}}'
  exposes:
  - type: rest
    namespace: agent-management-agent-updates-rest
    port: 8080
    description: REST adapter for Acronis Agent Management REST API — Agent Updates. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/agent-update-settings
      name: agent-update-settings
      description: REST surface for agent_update_settings.
      operations:
      - method: GET
        name: getagentupdatesettings
        description: Acronis Get Agent Update Settings
        call: agent-management-agent-updates.getagentupdatesettings
        with:
          tenant_id: rest.tenant_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateagentupdatesettings
        description: Acronis Update Agent Update Settings
        call: agent-management-agent-updates.updateagentupdatesettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/agents/update-force
      name: agents-update-force
      description: REST surface for agents-update:force.
      operations:
      - method: POST
        name: forceagentupdate
        description: Acronis Force Agent Update
        call: agent-management-agent-updates.forceagentupdate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agent-management-agent-updates-mcp
    port: 9090
    transport: http
    description: MCP adapter for Acronis Agent Management REST API — Agent Updates. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: acronis-get-agent-update-settings
      description: Acronis Get Agent Update Settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-management-agent-updates.getagentupdatesettings
      with:
        tenant_id: tools.tenant_id
      outputParameters:
      - type: object
        mapping: $.
    - name: acronis-update-agent-update-settings
      description: Acronis Update Agent Update Settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: agent-management-agent-updates.updateagentupdatesettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: acronis-force-agent-update
      description: Acronis Force Agent Update
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-management-agent-updates.forceagentupdate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.