Render · Capability

Render Public API — Registry Credentials

Render Public API — Registry Credentials. 5 operations. Lead operation: List registry credentials. Self-contained Naftiko capability covering one Render business surface.

Run with Naftiko RenderRegistry Credentials

What You Can Do

GET
Listregistrycredentials — List registry credentials
/v1/registrycredentials
POST
Createregistrycredential — Create registry credential
/v1/registrycredentials
GET
Retrieveregistrycredential — Retrieve registry credential
/v1/registrycredentials/{registrycredentialid}
PATCH
Updateregistrycredential — Update registry credential
/v1/registrycredentials/{registrycredentialid}
DELETE
Deleteregistrycredential — Delete registry credential
/v1/registrycredentials/{registrycredentialid}

MCP Tools

list-registry-credentials

List registry credentials

read-only idempotent
create-registry-credential

Create registry credential

retrieve-registry-credential

Retrieve registry credential

read-only idempotent
update-registry-credential

Update registry credential

idempotent
delete-registry-credential

Delete registry credential

idempotent

Capability Spec

render-registry-credentials.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Render Public API — Registry Credentials
  description: 'Render Public API — Registry Credentials. 5 operations. Lead operation: List registry credentials. Self-contained
    Naftiko capability covering one Render business surface.'
  tags:
  - Render
  - Registry Credentials
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RENDER_API_KEY: RENDER_API_KEY
capability:
  consumes:
  - type: http
    namespace: render-registry-credentials
    baseUri: https://api.render.com/v1
    description: Render Public API — Registry Credentials business capability. Self-contained, no shared references.
    resources:
    - name: registrycredentials
      path: /registrycredentials
      operations:
      - name: listregistrycredentials
        method: GET
        description: List registry credentials
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: array
          description: Filter for the name of a credential
        - name: username
          in: query
          type: array
          description: Filter for the username of a credential
        - name: type
          in: query
          type: array
          description: Filter for the registry type for the credential
        - name: createdBefore
          in: query
          type: string
          description: Filter for services created before a certain time (specified as an ISO 8601 timestamp)
        - name: createdAfter
          in: query
          type: string
          description: Filter for services created after a certain time (specified as an ISO 8601 timestamp)
        - name: updatedBefore
          in: query
          type: string
          description: Filter for services updated before a certain time (specified as an ISO 8601 timestamp)
        - name: updatedAfter
          in: query
          type: string
          description: Filter for services updated after a certain time (specified as an ISO 8601 timestamp)
      - name: createregistrycredential
        method: POST
        description: Create registry credential
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: registrycredentials-registryCredentialId
      path: /registrycredentials/{registryCredentialId}
      operations:
      - name: retrieveregistrycredential
        method: GET
        description: Retrieve registry credential
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateregistrycredential
        method: PATCH
        description: Update registry credential
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteregistrycredential
        method: DELETE
        description: Delete registry credential
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.RENDER_API_KEY}}'
  exposes:
  - type: rest
    namespace: render-registry-credentials-rest
    port: 8080
    description: REST adapter for Render Public API — Registry Credentials. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/registrycredentials
      name: registrycredentials
      description: REST surface for registrycredentials.
      operations:
      - method: GET
        name: listregistrycredentials
        description: List registry credentials
        call: render-registry-credentials.listregistrycredentials
        with:
          name: rest.name
          username: rest.username
          type: rest.type
          createdBefore: rest.createdBefore
          createdAfter: rest.createdAfter
          updatedBefore: rest.updatedBefore
          updatedAfter: rest.updatedAfter
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createregistrycredential
        description: Create registry credential
        call: render-registry-credentials.createregistrycredential
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/registrycredentials/{registrycredentialid}
      name: registrycredentials-registrycredentialid
      description: REST surface for registrycredentials-registryCredentialId.
      operations:
      - method: GET
        name: retrieveregistrycredential
        description: Retrieve registry credential
        call: render-registry-credentials.retrieveregistrycredential
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateregistrycredential
        description: Update registry credential
        call: render-registry-credentials.updateregistrycredential
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteregistrycredential
        description: Delete registry credential
        call: render-registry-credentials.deleteregistrycredential
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: render-registry-credentials-mcp
    port: 9090
    transport: http
    description: MCP adapter for Render Public API — Registry Credentials. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-registry-credentials
      description: List registry credentials
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: render-registry-credentials.listregistrycredentials
      with:
        name: tools.name
        username: tools.username
        type: tools.type
        createdBefore: tools.createdBefore
        createdAfter: tools.createdAfter
        updatedBefore: tools.updatedBefore
        updatedAfter: tools.updatedAfter
      outputParameters:
      - type: object
        mapping: $.
    - name: create-registry-credential
      description: Create registry credential
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: render-registry-credentials.createregistrycredential
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-registry-credential
      description: Retrieve registry credential
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: render-registry-credentials.retrieveregistrycredential
      outputParameters:
      - type: object
        mapping: $.
    - name: update-registry-credential
      description: Update registry credential
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: render-registry-credentials.updateregistrycredential
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-registry-credential
      description: Delete registry credential
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: render-registry-credentials.deleteregistrycredential
      outputParameters:
      - type: object
        mapping: $.