Skip to main content

DevOps & CI/CD

GitHub Actions, Jenkins, ArgoCD

  • Tools: 4
  • Connectors: 6

Connectors in this domain

Tool reference

devops.builds.get - Get Build

Get details of a specific build

  • Risk: read - Read-only - safe to call freely
  • Supported by: Terraform Cloud, Argo CD, GitLab CI/CD, Jenkins, CircleCI, GitHub Actions

Input schema

FieldTypeRequiredDescription
build_idstringYes-

Output schema

No fields.

REST example

curl -X POST 'https://integration-hub.rezolve.ai/api/v1/tools/devops.builds.get/execute' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"input":{"build_id":"string"}}'

MCP example

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "devops.builds.get",
"arguments": {
"build_id": "string"
}
}
}

devops.builds.trigger - Trigger Build

Trigger a new build or pipeline run

  • Risk: write - Creates or modifies data
  • Supported by: Argo CD, GitLab CI/CD, Jenkins, Terraform Cloud, CircleCI, GitHub Actions

Input schema

FieldTypeRequiredDescription
refstringNo-
pipeline_idstringYes-

Output schema

No fields.

REST example

curl -X POST 'https://integration-hub.rezolve.ai/api/v1/tools/devops.builds.trigger/execute' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"input":{"pipeline_id":"string"}}'

MCP example

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "devops.builds.trigger",
"arguments": {
"pipeline_id": "string"
}
}
}

devops.deployments.list - List Deployments

List deployments for a project

  • Risk: read - Read-only - safe to call freely
  • Supported by: Terraform Cloud, Argo CD, GitHub Actions, GitLab CI/CD, CircleCI, Jenkins

Input schema

FieldTypeRequiredDescription
project_idstringNo-
environmentstringNo-

Output schema

No fields.

REST example

curl -X POST 'https://integration-hub.rezolve.ai/api/v1/tools/devops.deployments.list/execute' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"input":{"project_id":"string","environment":"string"}}'

MCP example

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "devops.deployments.list",
"arguments": {
"project_id": "string",
"environment": "string"
}
}
}

devops.pipelines.list - List Pipelines

List CI/CD pipelines or workflows

  • Risk: read - Read-only - safe to call freely
  • Supported by: Argo CD, Terraform Cloud, GitLab CI/CD, Jenkins, CircleCI, GitHub Actions

Input schema

FieldTypeRequiredDescription
project_idstringNo-

Output schema

No fields.

REST example

curl -X POST 'https://integration-hub.rezolve.ai/api/v1/tools/devops.pipelines.list/execute' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"input":{"project_id":"string"}}'

MCP example

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "devops.pipelines.list",
"arguments": {
"project_id": "string"
}
}
}