GitHub repository
*://github.com/*
Read-only tools for GitHub repository pages: extract the README and jump to code search.
by webmcp-cafe · v1 · 0 installs · updated 7/24/2026
Tools (2)
gh_read_readmeread-onlyRead the README content of the repository page currently open.
inputSchema + execution
{ "inputSchema": { "type": "object", "properties": {} }, "execution": { "selector": "body", "autosubmit": false, "resultExtract": "text", "resultSelector": "article.markdown-body" } }gh_search_coderead-onlySearch code in this repository. Navigates to GitHub code search scoped to the current repository.
inputSchema + execution
{ "inputSchema": { "type": "object", "required": [ "owner", "repo", "query" ], "properties": { "repo": { "type": "string", "description": "Repository name (from the URL)" }, "owner": { "type": "string", "description": "Repository owner (from the URL)" }, "query": { "type": "string", "description": "Code search query" } } }, "execution": { "steps": [ { "url": "https://github.com/search?q=repo%3A{{owner}}%2F{{repo}}+{{query}}&type=code", "action": "navigate" } ], "selector": "body", "autosubmit": false } }