Render · Capability

Render Public API — Maintenance

Render Public API — Maintenance. 4 operations. Lead operation: List maintenance runs. Self-contained Naftiko capability covering one Render business surface.

Run with Naftiko RenderMaintenance

What You Can Do

GET
Listmaintenance — List maintenance runs
/v1/maintenance
GET
Retrievemaintenance — Retrieve maintenance run
/v1/maintenance/{maintenancerunparam}
PATCH
Updatemaintenance — Update maintenance run
/v1/maintenance/{maintenancerunparam}
POST
Triggermaintenance — Trigger maintenance run
/v1/maintenance/{maintenancerunparam}/trigger

MCP Tools

list-maintenance-runs

List maintenance runs

read-only idempotent
retrieve-maintenance-run

Retrieve maintenance run

read-only idempotent
update-maintenance-run

Update maintenance run

idempotent
trigger-maintenance-run

Trigger maintenance run

Capability Spec

render-maintenance.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Render Public API — Maintenance
  description: 'Render Public API — Maintenance. 4 operations. Lead operation: List maintenance runs. Self-contained Naftiko
    capability covering one Render business surface.'
  tags:
  - Render
  - Maintenance
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RENDER_API_KEY: RENDER_API_KEY
capability:
  consumes:
  - type: http
    namespace: render-maintenance
    baseUri: https://api.render.com/v1
    description: Render Public API — Maintenance business capability. Self-contained, no shared references.
    resources:
    - name: maintenance
      path: /maintenance
      operations:
      - name: listmaintenance
        method: GET
        description: List maintenance runs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: resourceId
          in: query
          type: array
        - name: state
          in: query
          type: array
    - name: maintenance-maintenanceRunParam
      path: /maintenance/{maintenanceRunParam}
      operations:
      - name: retrievemaintenance
        method: GET
        description: Retrieve maintenance run
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: maintenanceRunParam
          in: path
          type: string
          required: true
      - name: updatemaintenance
        method: PATCH
        description: Update maintenance run
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: maintenance-maintenanceRunParam-trigger
      path: /maintenance/{maintenanceRunParam}/trigger
      operations:
      - name: triggermaintenance
        method: POST
        description: Trigger maintenance run
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.RENDER_API_KEY}}'
  exposes:
  - type: rest
    namespace: render-maintenance-rest
    port: 8080
    description: REST adapter for Render Public API — Maintenance. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/maintenance
      name: maintenance
      description: REST surface for maintenance.
      operations:
      - method: GET
        name: listmaintenance
        description: List maintenance runs
        call: render-maintenance.listmaintenance
        with:
          resourceId: rest.resourceId
          state: rest.state
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/maintenance/{maintenancerunparam}
      name: maintenance-maintenancerunparam
      description: REST surface for maintenance-maintenanceRunParam.
      operations:
      - method: GET
        name: retrievemaintenance
        description: Retrieve maintenance run
        call: render-maintenance.retrievemaintenance
        with:
          maintenanceRunParam: rest.maintenanceRunParam
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatemaintenance
        description: Update maintenance run
        call: render-maintenance.updatemaintenance
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/maintenance/{maintenancerunparam}/trigger
      name: maintenance-maintenancerunparam-trigger
      description: REST surface for maintenance-maintenanceRunParam-trigger.
      operations:
      - method: POST
        name: triggermaintenance
        description: Trigger maintenance run
        call: render-maintenance.triggermaintenance
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: render-maintenance-mcp
    port: 9090
    transport: http
    description: MCP adapter for Render Public API — Maintenance. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-maintenance-runs
      description: List maintenance runs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: render-maintenance.listmaintenance
      with:
        resourceId: tools.resourceId
        state: tools.state
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-maintenance-run
      description: Retrieve maintenance run
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: render-maintenance.retrievemaintenance
      with:
        maintenanceRunParam: tools.maintenanceRunParam
      outputParameters:
      - type: object
        mapping: $.
    - name: update-maintenance-run
      description: Update maintenance run
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: render-maintenance.updatemaintenance
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: trigger-maintenance-run
      description: Trigger maintenance run
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: render-maintenance.triggermaintenance
      outputParameters:
      - type: object
        mapping: $.