boj_github_create_issue
Create GitHub issues to report bugs, request features, or track tasks in repositories by specifying owner, repo, title, and optional details.
Instructions
Create an issue on a GitHub repo
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | ||
| repo | Yes | ||
| title | Yes | ||
| body | No | ||
| labels | No |
Implementation Reference
- mcp-bridge/main.js:241-242 (handler)The implementation of 'boj_github_create_issue' inside handleGitHubTool which calls githubApiCall.
case "boj_github_create_issue": return githubApiCall("POST", `/repos/${args.owner}/${args.repo}/issues`, { title: args.title, body: args.body, labels: args.labels }); - mcp-bridge/main.js:532-532 (registration)The registration of 'boj_github_create_issue' in the tool list generated for MCP clients.
{ name: "boj_github_create_issue", desc: "Create an issue on a GitHub repo", props: { owner: { type: "string" }, repo: { type: "string" }, title: { type: "string" }, body: { type: "string" }, labels: { type: "array", items: { type: "string" } } }, req: ["owner", "repo", "title"] },