boj_github_search_code
Search GitHub code repositories using queries to find specific implementations, functions, or code snippets for development and learning purposes.
Instructions
Search code on GitHub
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Implementation Reference
- mcp-bridge/main.js:257-258 (handler)The handler logic for "boj_github_search_code" which delegates to the githubApiCall helper.
case "boj_github_search_code": return githubApiCall("GET", `/search/code?q=${encodeURIComponent(args.query)}`); - mcp-bridge/main.js:542-542 (registration)Registration of the "boj_github_search_code" tool in the tool definitions list.
{ name: "boj_github_get_file", desc: "Get file contents from a repo", props: { owner: { type: "string" }, repo: { type: "string" }, path: { type: "string" }, ref: { type: "string" } }, req: ["owner", "repo", "path"] },