boj_gitlab_setup_mirror
Configure push mirroring for GitLab projects to synchronize repositories with external targets using project ID and target URL parameters.
Instructions
Set up a push mirror
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| target_url | Yes |
Implementation Reference
- mcp-bridge/main.js:287-288 (handler)The tool handler implementation in handleGitLabTool which performs the GitLab API POST request to set up a remote mirror.
case "boj_gitlab_setup_mirror": return gitlabApiCall("POST", `/projects/${encodeURIComponent(args.project_id)}/remote_mirrors`, { url: args.target_url, enabled: true });