A Multi-Claude program that interacts with the GitHub API through Claude Desktop, allowing users to search repositories, manage issues, pull requests, repository settings, workflows, and collaborators.
Create, update, and manage GitHub issues and pull requests
Manage repository settings and configurations
Handle repository workflows and actions
Search for users and organizations
Manage collaborators and teams
💬 Example Queries
Search for repositories search_repos(query="python web framework", sort="stars", max_results=5)
Create a new issue create_issue(owner="username", repo="repository", title="Bug: Login not working", body="Users cannot log in using the login button", labels=["bug", "high-priority"])
Create a pull request create_pull_request(owner="username", repo="repository", title="Feature: Add user authentication", body="Implements JWT-based authentication", head="feature/auth", base="main")
Search for issues search_issues(query="is:open is:issue author:username", max_results=10)