boj_github_get_repo
Retrieve GitHub repository information by specifying the owner and repository name to access project details and metadata.
Instructions
Get a GitHub repository
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | ||
| repo | Yes |
Implementation Reference
- mcp-bridge/main.js:239-240 (handler)The tool logic handler for boj_github_get_repo, which invokes githubApiCall with the repository endpoint.
case "boj_github_get_repo": return githubApiCall("GET", `/repos/${args.owner}/${args.repo}`); - mcp-bridge/main.js:532-532 (registration)Registration of the boj_github_get_repo tool within the tool definition list.
{ 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"] },