{
  "info": {
    "name": "Seqera — mcp.ai",
    "description": "REST API for the Seqera MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/seqera",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "seqera_create_wave_container",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/wave/container",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "wave",
            "container"
          ]
        },
        "description": "Tool to submit a request to Wave for accessing a private container registry or building a container image on-the-fly. Use when you need to provision containers via Wave with Dockerfile, Conda recipe, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"freeze\": false,\n  \"packages\": {},\n  \"condaFile\": \"\",\n  \"nameStrategy\": \"\",\n  \"containerFile\": \"\",\n  \"containerImage\": \"\",\n  \"buildRepository\": \"\",\n  \"cacheRepository\": \"\",\n  \"containerConfig\": {},\n  \"towerAccessToken\": \"\",\n  \"towerWorkspaceId\": 0,\n  \"containerPlatform\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_get_organization_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organizationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_get_service_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/service/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "service",
            "info"
          ]
        },
        "description": "Tool to retrieve information about the Seqera API service. Use when you need to check the service version and commit ID for troubleshooting.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_get_user_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "info"
          ]
        },
        "description": "Tool to retrieve information about the authenticated user. Use when you need to fetch details of the current user after authentication.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_get_wave_build_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wave/build/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wave",
            "build",
            "logs"
          ]
        },
        "description": "Tool to get logs for a container build by build ID. Use when you need to troubleshoot or inspect the build process of a Wave container.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"buildId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_get_wave_build_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wave/build/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wave",
            "build",
            "status"
          ]
        },
        "description": "Tool to retrieve the status of a Wave container build by build ID. Use when you need to check if a container build is completed and whether it succeeded.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"buildId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_inspect_wave_container",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/inspect/wave/container",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "inspect",
            "wave",
            "container"
          ]
        },
        "description": "Tool to inspect container image metadata via Wave. Use when you need registry, manifest, digest, configuration, and OCI compatibility information about a container image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"towerEndpoint\": \"\",\n  \"containerImage\": \"\",\n  \"towerAccessToken\": \"\",\n  \"towerWorkspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_list_action_event_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/action/event/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "action",
            "event",
            "types"
          ]
        },
        "description": "Tool to list supported action event types. Use when you need to discover available triggers for pipelines, optionally filtered by workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_list_compute_environments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/compute/environments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "compute",
            "environments"
          ]
        },
        "description": "Tool to retrieve a list of compute environments. Use when you need to page, sort, or filter compute environments accessible to your account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"workspaceId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_list_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organizations"
          ]
        },
        "description": "Tool to list all organizations. Use after authentication to retrieve accessible Seqera organizations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_list_pipelines",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pipelines",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pipelines"
          ]
        },
        "description": "Tool to list all pipelines accessible to the authenticated user. Use when you need to browse pipelines with optional pagination, sorting, or search filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"search\": \"\",\n  \"sortBy\": \"\",\n  \"pageSize\": 0,\n  \"sortOrder\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_list_workflows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workflows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workflows"
          ]
        },
        "description": "Tool to list workflows. Use when you need to retrieve workflows filtered by workspace and paginated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"nextToken\": \"\",\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_validate_action_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/action/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "action",
            "name"
          ]
        },
        "description": "Tool to validate action name. Use when you need to confirm if an action name is valid and available before creating an action. Returns validation status with details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"workspaceId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seqera_validate_pipeline_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/pipeline/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "pipeline",
            "name"
          ]
        },
        "description": "Tool to validate a pipeline name. Use when you need to check if a given pipeline name is valid and available before creating or updating one.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"orgId\": 0,\n  \"workspaceId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}