GitHub MCP Server - List PRs, issues, repo info, and search code
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-davidweb3-ctrl-github": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
GitHub MCP Server - List PRs, issues, repo info, and search code
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Persistent memory using a knowledge graph
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for io.github.davidweb3-ctrl/github and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for GitHub operations. This server enables AI assistants to interact with GitHub repositories through a standardized interface.
npm install -g @bountyclaw/mcp-github-server
Set your GitHub token as an environment variable:
export GITHUB_TOKEN=your_github_token_here
Or pass it when creating the client programmatically.
Add to your Claude Code MCP settings:
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@bountyclaw/mcp-github-server"],
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}
github_pr_listList pull requests for a repository.
Input:
owner (string, required): Repository ownerrepo (string, required): Repository namestate (enum, optional): Filter by state (open, closed, all)head (string, optional): Filter by head branchbase (string, optional): Filter by base branchsort (enum, optional): Sort fielddirection (enum, optional): Sort directionper_page (number, optional): Results per page (max 100)page (number, optional): Page numbergithub_pr_viewView details of a specific pull request.
Input:
owner (string, required): Repository ownerrepo (string, required): Repository namepull_number (number, required): PR numberinclude_diff (boolean, optional): Include diff contentgithub_issue_listList issues for a repository.
Input:
owner (string, required): Repository ownerrepo (string, required): Repository namestate (enum, optional): Filter by statelabels (string, optional): Comma-separated label namesassignee (string, optional): Filter by assigneecreator (string, optional): Filter by creatorsort (enum, optional): Sort fielddirection (enum, optional): Sort directionper_page (number, optional): Results per pagepage (number, optional): Page numbergithub_issue_viewView details of a specific issue.
Input:
owner (string, required): Repository ownerrepo (string, required): Repository nameissue_number (number, required): Issue numberinclude_comments (boolean, optional): Include commentsgithub_repo_infoGet repository information and statistics.
Input:
owner (string, required): Repository ownerrepo (string, required): Repository namegithub_search_codeSearch code across GitHub.
Input:
query (string, required): Search query (GitHub code search syntax)sort (enum, optional): Sort field (indexed, best-match)order (enum, optional): Sort orderper_page (number, optional): Results per pagepage (number, optional): Page number"List open PRs in facebook/react"
"Show me issue #123 in microsoft/vscode"
"Get info about the kubernetes/kubernetes repo"
"Search for 'useEffect' in TypeScript files"
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Run tests with coverage
npm run test:coverage
# Lint
npm run lint
# Format
npm run format
The project includes comprehensive unit tests with 90%+ coverage: