GitHub

live Development

Search repositories, get repo details, list issues, and look up user profiles via GitHub REST API

4 tools
0ms auth
free tier 50 calls/day

Tools

search_repos required: query

Search GitHub repositories by keyword

Parameters
Name Type Description
query req string Search query
sort opt string Sort by: stars, forks, or updated
per_page opt number Results to return (default 10, max 30)
Try it
get_repo required: owner, repo

Get full details for a GitHub repository

Parameters
Name Type Description
owner req string Repository owner
repo req string Repository name
Try it
list_repo_issues required: owner, repo

List issues for a GitHub repository

Parameters
Name Type Description
owner req string Repository owner
repo req string Repository name
state opt string Filter: open, closed, or all
per_page opt number Results to return (default 10)
Try it
get_user required: username

Get a GitHub user public profile

Parameters
Name Type Description
username req string GitHub username
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/github/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/github/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_repos","arguments":{"query": "hello"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_repos", {"query":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("search repositories, get repo details, list issues, and look up user profiles via github rest api");

Related packs

Other Pipeworx packs in the same categories (Development):