Seqera Labs agents API

The agents API from Seqera Labs — 4 operation(s) for agents.

Operations 7

GET /agents List agents #
POST /agents Create agent #
DELETE /agents/{agentId} Delete agent #
GET /agents/{agentId} Describe agent #
PUT /agents/{agentId} Update agent #
POST /agents/{agentId}/disable Disable agent #
POST /agents/{agentId}/enable Enable agent #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/seqera-labs-agents-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

seqera-labs-agents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: info@seqera.io
    url: https://seqera.io
  description: Seqera Platform services API
  title: Seqera actions Agents API
  version: 1.181.0
servers:
- url: https://api.cloud.seqera.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: agents
paths:
  /agents:
    get:
      description: Lists non-deleted agents in a workspace.
      operationId: ListAgents
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      - description: Filter by agent name
        in: query
        name: search
        schema:
          type: string
      - description: Pagination max results
        in: query
        name: max
        schema:
          format: int32
          type: integer
      - description: Pagination offset
        in: query
        name: offset
        schema:
          format: int32
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAgentsResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: List agents
      tags:
      - agents
    post:
      description: Creates an agent in a workspace.
      operationId: CreateAgent
      parameters:
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAgentRequest'
        description: Agent create request
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateAgentResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Duplicate element
      security:
      - BearerAuth: []
      summary: Create agent
      tags:
      - agents
  /agents/{agentId}:
    delete:
      description: Tombstones an agent in a workspace.
      operationId: DeleteAgent
      parameters:
      - description: Agent string identifier
        in: path
        name: agentId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '204':
          description: OK - No content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
      security:
      - BearerAuth: []
      summary: Delete agent
      tags:
      - agents
    get:
      description: Retrieves an agent in a workspace.
      operationId: DescribeAgent
      parameters:
      - description: Agent string identifier
        in: path
        name: agentId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DescribeAgentResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not found
      security:
      - BearerAuth: []
      summary: Describe agent
      tags:
      - agents
    put:
      description: Updates an agent in a workspace.
      operationId: UpdateAgent
      parameters:
      - description: Agent string identifier
        in: path
        name: agentId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAgentRequest'
        description: Agent update request
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateAgentResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not found
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Duplicate element
      security:
      - BearerAuth: []
      summary: Update agent
      tags:
      - agents
  /agents/{agentId}/disable:
    post:
      description: Marks an active agent as inactive.
      operationId: DisableAgent
      parameters:
      - description: Agent string identifier
        in: path
        name: agentId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateAgentResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not found
      security:
      - BearerAuth: []
      summary: Disable agent
      tags:
      - agents
  /agents/{agentId}/enable:
    post:
      description: Marks an inactive agent as active.
      operationId: EnableAgent
      parameters:
      - description: Agent string identifier
        in: path
        name: agentId
        required: true
        schema:
          type: string
      - description: Workspace numeric identifier
        in: query
        name: workspaceId
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateAgentResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '403':
          description: Operation not allowed
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Not found
      security:
      - BearerAuth: []
      summary: Enable agent
      tags:
      - agents
components:
  schemas:
    DescribeAgentResponse:
      properties:
        agent:
          $ref: '#/components/schemas/AgentDbDto'
      type: object
    CreateAgentRequest:
      properties:
        description:
          type:
          - string
          - 'null'
        name:
          type: string
        systemPrompt:
          type: string
        templateId:
          type:
          - string
          - 'null'
      type: object
    AgentDbDto:
      properties:
        createdBy:
          format: int64
          type: integer
        dateCreated:
          format: date-time
          type: string
        description:
          type:
          - string
          - 'null'
        id:
          type: string
        lastUpdated:
          format: date-time
          type: string
        name:
          type: string
        status:
          $ref: '#/components/schemas/Agent.Status'
        systemPrompt:
          type: string
        templateId:
          type:
          - string
          - 'null'
        updatedBy:
          format: int64
          type: integer
        workspaceId:
          format: int64
          type: integer
      type: object
    Agent.Status:
      enum:
      - active
      - inactive
      - deleted
      type: string
      x-enum-varnames:
      - active
      - inactive
      - deleted
    UpdateAgentResponse:
      properties:
        agent:
          $ref: '#/components/schemas/AgentDbDto'
      type: object
    ErrorResponse:
      properties:
        message:
          type: string
      required:
      - message
      type: object
    UpdateAgentRequest:
      properties:
        description:
          type:
          - string
          - 'null'
        name:
          type: string
        systemPrompt:
          type: string
        templateId:
          type:
          - string
          - 'null'
      type: object
    CreateAgentResponse:
      properties:
        agent:
          $ref: '#/components/schemas/AgentDbDto'
      type: object
    ListAgentsResponse:
      properties:
        agents:
          items:
            $ref: '#/components/schemas/AgentDbDto'
          type: array
        totalSize:
          format: int64
          type: integer
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http