Rely.io · Capability

Rely.io Public API — Automations

Rely.io Public API — Automations. 2 operations. Lead operation: List Automations. Self-contained Naftiko capability covering one Rely business surface.

Run with Naftiko RelyAutomations

What You Can Do

GET
Listautomations — List Automations
/v1/api/v1/automations
POST
Createautomation — Create Automation
/v1/api/v1/automations

MCP Tools

list-automations

List Automations

read-only idempotent
create-automation

Create Automation

Capability Spec

rely-automations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Rely.io Public API — Automations
  description: 'Rely.io Public API — Automations. 2 operations. Lead operation: List Automations. Self-contained Naftiko capability
    covering one Rely business surface.'
  tags:
  - Rely
  - Automations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RELY_API_KEY: RELY_API_KEY
capability:
  consumes:
  - type: http
    namespace: rely-automations
    baseUri: https://api.rely.io
    description: Rely.io Public API — Automations business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-automations
      path: /api/v1/automations
      operations:
      - name: listautomations
        method: GET
        description: List Automations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createautomation
        method: POST
        description: Create Automation
        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.RELY_API_KEY}}'
  exposes:
  - type: rest
    namespace: rely-automations-rest
    port: 8080
    description: REST adapter for Rely.io Public API — Automations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v1/automations
      name: api-v1-automations
      description: REST surface for api-v1-automations.
      operations:
      - method: GET
        name: listautomations
        description: List Automations
        call: rely-automations.listautomations
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createautomation
        description: Create Automation
        call: rely-automations.createautomation
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rely-automations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Rely.io Public API — Automations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-automations
      description: List Automations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rely-automations.listautomations
      outputParameters:
      - type: object
        mapping: $.
    - name: create-automation
      description: Create Automation
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rely-automations.createautomation
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.