← Tools Reference

Seqera

Seqera integration (Data, Developer Tools). Imported from open-connector.

API key8 toolshttps://{api_base_url}
GET
seqera_get_current_user
Retrieve the current Seqera user profile and default workspace information.

/user-info

GET
seqera_list_user_workspaces
List the workspaces and organizations visible to the current Seqera user.

/user/{userId}/workspaces

1 parameter
ParamTypeRequiredDescription
userIdintegerrequiredThe Seqera numeric user ID.
GET
seqera_get_workspace
Retrieve one Seqera workspace by organization ID and workspace ID.

/orgs/{orgId}/workspaces/{workspaceId}

2 parameters
ParamTypeRequiredDescription
orgIdintegerrequiredThe Seqera numeric organization ID.
workspaceIdintegerrequiredThe Seqera numeric workspace ID.
GET
seqera_list_pipelines
List Seqera pipelines in the current user context or a specific workspace.

/pipelines

8 parameters
ParamTypeRequiredDescription
workspaceIdintegeroptionalThe Seqera numeric workspace ID.
maxintegeroptionalThe maximum number of records to return.
offsetintegeroptionalThe zero-based offset of the first record to return.
sortBystringoptionalThe Seqera pipeline sort field.
sortDirstringoptionalThe Seqera pipeline sort direction.
searchstringoptionalA free-text search term used to filter pipelines.
visibilitystringoptionalThe visibility filter value used to filter pipelines.
attributesarrayoptionalAdditional pipeline attributes to include in the response.
GET
seqera_get_pipeline
Retrieve one Seqera pipeline by pipeline ID.

/pipelines/{pipelineId}

4 parameters
ParamTypeRequiredDescription
pipelineIdintegerrequiredThe Seqera numeric pipeline ID.
workspaceIdintegeroptionalThe Seqera numeric workspace ID.
sourceWorkspaceIdintegeroptionalThe source workspace numeric ID used when resolving shared resources.
attributesarrayoptionalAdditional pipeline attributes to include in the response.
GET
seqera_list_workflows
List Seqera workflow runs in the current user context or a specific workspace.

/workflow

6 parameters
ParamTypeRequiredDescription
workspaceIdintegeroptionalThe Seqera numeric workspace ID.
maxintegeroptionalThe maximum number of records to return.
offsetintegeroptionalThe zero-based offset of the first record to return.
searchstringoptionalA free-text search term used to filter workflows.
includeTotalSizebooleanoptionalWhether Seqera should include the total workflow count in the response.
attributesarrayoptionalAdditional workflow attributes to include in the response.
GET
seqera_get_workflow
Retrieve one Seqera workflow run by workflow ID.

/workflow/{workflowId}

3 parameters
ParamTypeRequiredDescription
workflowIdstringrequiredThe Seqera workflow ID.
workspaceIdintegeroptionalThe Seqera numeric workspace ID.
attributesarrayoptionalAdditional workflow attributes to include in the response.
POST
seqera_launch_workflow
Launch a Seqera workflow from a pipeline repository or registered pipeline.

/workflow/launch

17 parameters
ParamTypeRequiredDescription
workspaceIdintegeroptionalThe Seqera numeric workspace ID.
sourceWorkspaceIdintegeroptionalThe source workspace numeric ID used when resolving shared resources.
pipelinestringrequiredThe pipeline repository name or URL to launch.
computeEnvIdstringoptionalThe compute environment ID used for the launch.
workDirstringoptionalThe work directory configured for the workflow launch.
revisionstringoptionalThe Git revision used for the workflow launch.
runNamestringoptionalThe run name assigned to the workflow launch.
configProfilesarrayoptionalThe Nextflow config profiles applied to the launch.
paramsTextstringoptionalThe workflow parameters payload encoded as text.
configTextstringoptionalAdditional Nextflow config text applied to the launch.
mainScriptstringoptionalThe alternative main script path used for the launch.
entryNamestringoptionalThe Nextflow entry workflow name used for the launch.
pullLatestbooleanoptionalWhether Seqera should pull the latest pipeline revision before launching.
resumebooleanoptionalWhether Seqera should resume a compatible previous workflow execution.
stubRunbooleanoptionalWhether the workflow should run in Nextflow stub mode.
userSecretsarrayoptionalThe user secret names attached to the launch.
workspaceSecretsarrayoptionalThe workspace secret names attached to the launch.