GitHub MCP ToolsServer

NZenitram
GitHub
GitHubDevelopment ToolsAPI Integration

Loading subscription status...

💡 Description

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.

📝 JSON Entries

{
  "mcpServers": [
    {
      "GitHub MCP Tools": {
        "env": {
          "GITHUB_TOKEN": "your_personal_access_token_here",
          "GITHUB_USERNAME": "your_github_username"
        },
        "args": [],
        "command": "python run.py"
      }
    }
  ]
}

🛠️ Tools

gitpytest

Features

  • Search for GitHub repositories and issues
  • 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)
  • Manage repository settings manage_repo_settings(owner="username", repo="repository", settings={"has_issues": True, "has_projects": True, "has_wiki": True})