boj_github_list_repos
Retrieve and display your GitHub repositories with configurable sorting and pagination options to manage your code projects effectively.
Instructions
List your GitHub repositories
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| per_page | No | ||
| sort | No |
Implementation Reference
- mcp-bridge/main.js:237-238 (handler)The implementation of the boj_github_list_repos tool within handleGitHubTool, which calls githubApiCall.
case "boj_github_list_repos": return githubApiCall("GET", `/user/repos?per_page=${args.per_page || 30}&sort=${args.sort || "updated"}`); - mcp-bridge/main.js:530-530 (registration)Registration of the boj_github_list_repos tool in the ghTools array within cartridgeToTools.
{ name: "boj_github_list_repos", desc: "List your GitHub repositories", props: { per_page: { type: "number" }, sort: { type: "string", enum: ["updated", "created", "pushed", "full_name"] } } },