boj_gitlab_list_pipelines
Retrieve CI/CD pipeline status for a GitLab project to monitor build progress and deployment workflows.
Instructions
List CI/CD pipelines
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes |
Implementation Reference
- mcp-bridge/main.js:285-286 (handler)The handler implementation for the boj_gitlab_list_pipelines tool.
case "boj_gitlab_list_pipelines": return gitlabApiCall("GET", `/projects/${encodeURIComponent(args.project_id)}/pipelines`); - mcp-bridge/main.js:557-562 (registration)Registration of the boj_gitlab_list_pipelines tool.
{ name: "boj_gitlab_list_pipelines", desc: "List CI/CD pipelines", props: { project_id: { type: "string" } }, req: ["project_id"] }, { name: "boj_gitlab_setup_mirror", desc: "Set up a push mirror", props: { project_id: { type: "string" }, target_url: { type: "string" } }, req: ["project_id", "target_url"] }, ]; for (const t of glTools) { tools.push({ name: t.name, description: t.desc, inputSchema: { type: "object", properties: t.props, required: t.req || [] } }); }