GitHub repository

*://github.com/*

Read-only tools for GitHub repository pages: extract the README and jump to code search.

by webmcp-cafe · v1 · updated 7/28/2026

Checking for the extension…

Installing saves v1 in your browser — nothing is tied to your account. The extension registers its tools whenever you're on a matching page, and you stay on v1 until you update.

Needs the extension on Chrome 149+ with the WebMCP testing flag. Get the extension →

Tools (2)

  • gh_read_readmeread-only

    Read the README content of the repository page currently open.

    Show input schema and execution
    {
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "execution": {
        "mode": "dom",
        "selector": "body",
        "autosubmit": false,
        "resultExtract": "text",
        "resultSelector": "article.markdown-body"
      }
    }
  • gh_search_coderead-only

    Search code in this repository. Navigates to GitHub code search scoped to the current repository.

    Show input schema and 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": {
        "mode": "dom",
        "steps": [
          {
            "url": "https://github.com/search?q=repo%3A{{owner}}%2F{{repo}}+{{query}}&type=code",
            "action": "navigate"
          }
        ],
        "selector": "body",
        "autosubmit": false
      }
    }
GitHub repository · WebMCP Cafe