Install
openclaw skills install pipeworx-githubSearch GitHub repos, view issues, and look up user profiles via the public REST API — no token required
openclaw skills install pipeworx-githubSearch repositories by keyword, get detailed repo metadata (stars, forks, language, license), browse open issues, and look up user profiles. Uses the public GitHub REST API — no authentication token needed for public data.
search_repos — Search repositories by keyword, optionally sorted by stars, forks, or updated dateget_repo — Full details for a specific repo by owner/name (e.g., "facebook/react")list_repo_issues — Open, closed, or all issues for a repositoryget_user — Public profile for a GitHub username (e.g., "torvalds")"cli tool language:go", sort by starscurl -s -X POST https://gateway.pipeworx.io/github/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_repos","arguments":{"query":"react hooks","sort":"stars","limit":5}}}'
Each result includes: name, full_name, description, stars, forks, language, license, and URL.
{
"mcpServers": {
"pipeworx-github": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/github/mcp"]
}
}
}
Unauthenticated GitHub API requests are limited to 60/hour per IP. For heavier use, consider authenticated access through GitHub's own MCP server.