boj_gitlab_create_issue
Create GitLab issues to track tasks, bugs, or feature requests in your project. Specify project ID, title, and optional description to organize development work.
Instructions
Create a GitLab issue
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| title | Yes | ||
| description | No |
Implementation Reference
- mcp-bridge/main.js:277-278 (handler)The implementation of the `boj_gitlab_create_issue` tool, which calls `gitlabApiCall` to create an issue on a specified GitLab project.
case "boj_gitlab_create_issue": return gitlabApiCall("POST", `/projects/${encodeURIComponent(args.project_id)}/issues`, { title: args.title, description: args.description });