Skip to main content
Glama

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
NameRequiredDescriptionDefault
ownerYes
repoYes
titleYes
bodyNo
labelsNo

Implementation Reference

  • 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 });
  • 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"] },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hyperpolymath/boj-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server